20分跪求c語言題目,跪求C語言程式設計吶!題目如下,請看到的C語言程式高手幫幫我吧 明天就考試了,急需啊!!!!!!!!!

2021-12-24 01:02:07 字數 1958 閱讀 8066

1樓:匿名使用者

#include

#include

int main()

student1,student2;

printf("請輸入學生1的姓名:");

scanf("%s",student1.name);

printf("請輸入學生1的學號:");

scanf("%d",&student1.num);

printf("請輸入學生1的分數:");

scanf("%f",&student1.score);

strcpy(student2.name,student1.name); //student2.name = student1.name;

student2.num = student1.num;

student2.score = student1.score;

printf("學生2的姓名%s,學號是%d,分數為%.2f\n",student2.name,student2.num,student2.score);

return 0;

}我的**的好處

每行只有一個任務,方便檢查

姓名是%s不是%c

scanf()語法錯誤

建議 讀《高質量程式設計才c》

字串的拷貝不能用賦值

2樓:琉璃子摩羯

把結構體定義在main函式之外

3樓:京縈

strcpy(xx1,xx2);

跪求c語言程式設計吶!題目如下,請看到的c語言程式高手幫幫我吧、明天就考試了,急需啊!!!!!!!!!

4樓:唐伯起

typedef struct stuinfo;

typedef struct nodestunode *stulist;

stunlist removebyage(int tage,stulist thelist)

else

q=p->next;

}return thelist;

} 生成連結串列時假設有頭結點

5樓:匿名使用者

dowhile((p=p->next)!=null); /*遍歷 連結串列*/

}void main()

6樓:匿名使用者

#include

#include

#include

#include

#define n 10

#define max_size 20

int main(void) node;

node *root = null, *current = null, *next = null, *new_node = null;

int i, size=0;

file* fp;

current = root;

for (i = 0; i < n; ++i) else

/* 指向下一個 */

current = new_node;

}/* 開啟檔案 */

fp = fopen("test.txt", "a");

if (fp == null)

for (current = root; current != null; current = current->next)

fclose(fp);

for (current = root; current != null; current = next)

system("echo 按任意test.txt&&pause>nul&&start test.txt");

return 0;}

20財富,跪求C語言題目答案

第一題 printf d,d a,b 第二題 12 第三題 s 1.0 n 第四題 34 第五題 1 3 5 第六題 第七題 1 x 0 2 x amin第八題 4 第九題 執行結束後,a 8 b 22 第十題 19 第十一題 鍵盤輸入 a 1,b 3,c 2第十二題 以 開頭 第十三題 1 ch ...

跪求c語言程式設計答案,跪求C語言程式設計 第四版,譚浩強 課後答案!!!!!

include include include include struct student stu 50 int k 0 void input void outputgrade void change void del void allgrade void paixu void main whil...

c語言題目,求解,C語言題目求解

x就是16進位制的,0就是零字元,一個十六進位制的數佔一個位元組,零字元在算位元組時不佔位元組,之後結果就是佔一個位元組 我就說要點了。1 double x,y x 1 y x 3 2 y的值為什麼是2.0?3 2兩個整型相除得整型1。2 main x 1值為0那麼輸出的應該為0 為什麼答案是1?單...