C語言基礎練習14

2021-08-10 15:46:53 字數 1038 閱讀 1245

1.有3個學生的資訊,放在結構體陣列中,要求輸出全部學生的資訊

#include "stdafx.h"

#includestruct student

;struct student stu[3] = ,, };

int main()

執行結果:

2.寫一函式建立乙個有3名學生資料的單向動態鍊錶並輸出鍊錶

#include "stdafx.h"

#include#include#define len sizeof(struct student)

struct student

;int n;

struct student*creat()

p2->next = null;

return(head);

}void print(struct student* head)

while (p != null);

}int main()

執行結果:

3.有若干個人員的資料,其中有學生和老師。學生的資料報括:姓名、號碼、性別、職業、班級。教師的資料報括:姓名、號碼、性別、職業、職務。要求用同乙個**來處理

#include "stdafx.h"

#includestruct

category;

}person[2];

int main()

printf("\n");

printf("no. name *** job class/position\n");

for (i = 0; i < 2; i++)

return 0;

}

C語言基礎 14 遞迴

函式可以呼叫自己,這就叫函式的遞迴。先序遞迴和後序遞迴 include void test int n void test1 int n void main void test int n void test1 int n 有n個人排成一隊,問第 n個人多少歲,他回答比前面乙個人大 2歲,再問前面乙...

C語言基礎練習

1 判斷年份是否是閏年 include int main else 如果輸入的年份能整除4但不能整除100或者能整除400就是閏年 return 0 2 判斷是否是素數 include int main printf n return0 int prime int n return 1 判斷素數函式...

C語言基礎練習

1.在螢幕上輸出以下圖案 水仙花數 是指乙個三位數,其各位數字的立方和確好等於該數本身,如 153 1 5 3?則153是乙個 水仙花數 在數論中,水仙花數 narcissistic number 也稱為自戀數 自冪數 阿姆斯壯數或阿姆斯特朗數 armstrong number 是指一n位數,其各個...