导航

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 阅读全文

posted @ 2021-06-17 21:53 布鲁布鲁鲁 阅读(30) 评论(1) 推荐(0) 编辑

2021年6月11日

摘要: #include<stdio.h>#include<stdlib.h>#include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20]; 阅读全文

posted @ 2021-06-11 00:46 布鲁布鲁鲁 阅读(40) 评论(1) 推荐(0) 编辑

2021年5月27日

摘要: #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 20:08 布鲁布鲁鲁 阅读(52) 评论(3) 推荐(0) 编辑

2021年4月29日

摘要: 1. #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-29 20:56 布鲁布鲁鲁 阅读(60) 评论(2) 推荐(0) 编辑

2021年4月15日

摘要: 1. // 生成N个0~99之间的随机整数,并打印输出 #include <stdio.h>#include <stdlib.h>#include <time.h>#define N 5 int main() { int x, n; srand(time(0)); // 以当前系统时间作为随机种子 阅读全文

posted @ 2021-04-15 22:17 布鲁布鲁鲁 阅读(37) 评论(2) 推荐(0) 编辑

2021年4月1日

摘要: 1. 格式符%04d的作用是:在左边填充数字0,输出变量的所有数字且左对齐 #include <stdio.h>int main() { int num; scanf("%d", &num); printf("2049%04d\n", num); scanf("%d", &num); printf( 阅读全文

posted @ 2021-04-01 22:18 布鲁布鲁鲁 阅读(340) 评论(2) 推荐(0) 编辑

2021年3月17日

摘要: 2. 原因:第一次的int指整型数据,不具有小数点数据,所以1/2等于0,第二次的float指单精度浮点型数,具有小数点。 3. 两次结果不同是因为所求的是指整型数据,出现了101/2=50,因此造成结果的差异。 本次操作中发现了int和float的区别,%d和%f的区别。同时,符号的大小写也是一个 阅读全文

posted @ 2021-03-17 00:40 布鲁布鲁鲁 阅读(42) 评论(0) 推荐(0) 编辑