幸福人生233

导航

2021年6月17日 #

实验七

摘要: #include<stdio.h> #include<stdlib.h> #define N 10 typedef struct student{ int num; char name[20]; int score; }STU; int main(){ FILE*fin; STU st[N]; in 阅读全文

posted @ 2021-06-17 20:46 幸福人生233 阅读(19) 评论(1) 推荐(0) 编辑

2021年6月10日 #

实验六

摘要: #include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 typedef struct student{ int id; char name[20]; char subject[20]; float perf; float 阅读全文

posted @ 2021-06-10 21:00 幸福人生233 阅读(30) 评论(1) 推荐(0) 编辑

2021年5月27日 #

实验5

摘要: #include <stdio.h> const int N=3; int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", &a[i] 阅读全文

posted @ 2021-05-27 22:00 幸福人生233 阅读(33) 评论(1) 推荐(0) 编辑

2021年4月30日 #

实验四

摘要: #include <stdio.h> long long fun(int n); // 函数声明 int main() { int n; long long f; while(scanf("%d", &n) != EOF) { f = fun(n); // 函数调用 printf("n = %d, 阅读全文

posted @ 2021-04-30 00:34 幸福人生233 阅读(38) 评论(1) 推荐(0) 编辑

2021年4月15日 #

实验3

摘要: #include<stdio.h> #include<stdlib.h> #include<time.h> #define N 5 int main(){int x,n;srand(time(0)); for(n=1;n<=N;n++){x=rand()%100; printf("%3d",x); 阅读全文

posted @ 2021-04-15 20:51 幸福人生233 阅读(36) 评论(2) 推荐(0) 编辑

2021年3月29日 #

实验2

摘要: #include <stdio.h> int main() { int num; scanf("%d", &num); printf("2049%04d\n", num); scanf("%d", &num); printf("2049%04d\n", num); scanf("%d", &num) 阅读全文

posted @ 2021-03-29 17:35 幸福人生233 阅读(46) 评论(2) 推荐(0) 编辑

2021年3月15日 #

实验一

摘要: //打印一个字符小人 #include<stdio.h> int main () { printf("O\n"); printf("<H>\n"); printf("II\n"); return 0 ; } 阅读全文

posted @ 2021-03-15 22:48 幸福人生233 阅读(37) 评论(0) 推荐(0) 编辑