學生資訊輸入輸出

2021-10-06 14:49:54 字數 596 閱讀 2303

輸入若干個學生的資訊(學號、姓名、成績),當輸入學號為0時結束,用單向鍊錶組織這些學生資訊後,再按順序輸出。

輸入樣例:

1 zhang 78

2 wang 80

3 li 75

4 zhao 85

0輸出樣例:

1 zhang 78

2 wang 80

3 li 75

4 zhao 85

#include

#include

#define pt "%d %s %d\n",p->num,p->name,p->score

#define n sizeof(struct stud)

struct stud

;void

print

(struct stud *p)

}struct stud *

creat

(void

) q->next=

null

;free

(p);

return head;

}int

main()

c語言(結構體) 實現學生資訊輸入,輸出,查詢

c語言 結構體 實現學生資訊輸入,輸出,查詢 利用結構體實現學生資訊的輸入,輸出,以及生日日期查詢 include define num 3 日期結構體 typedef structdate 學生資訊結構體 typedef structstudent 輸入資訊函式 void inputstudent...

學生資訊輸出

toc在這裡插入 片 include include include using namespace std class student student string,float void input string,float void print student student student s...

常用技巧 輸入輸出優化 輸入輸出外掛程式

我們知道cin cout是比較慢的,不過它們可以加速。在 中加入這兩句即可 std ios sync with stdio false std cin.tie 0 加速過後cin的速度與scanf的速度近似 當然,加速過後就不要混用print和cout,scanf和cin了。因為不同步,後果會很嚴重...