摘要: #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 s[N]; f 阅读全文
posted @ 2020-12-25 15:56 镜灬水月 阅读(100) 评论(3) 推荐(0)
摘要: // P280例8.15 // 对教材上的程序作了微调整,把输出学生信息单独编写成一个函数模块 // 打印不及格学生信息和所有学生信息程分别调用 #include<stdio.h> #include<stdlib.h> #include<string.h> #define N 4 // 运行程序输入 阅读全文
posted @ 2020-12-19 21:31 镜灬水月 阅读(87) 评论(3) 推荐(0)
摘要: #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 @ 2020-12-09 12:28 镜灬水月 阅读(103) 评论(3) 推荐(0)
摘要: #include<stdio.h> long long fac(int n); int main(){ int i,n; printf("Enter n: "); scanf("%d",&n); for(i=1;i<=n;++i) printf("%d!=%lld\n",i,fac(i)); ret 阅读全文
posted @ 2020-11-25 21:34 镜灬水月 阅读(73) 评论(3) 推荐(0)
摘要: #include<stdio.h> #include<math.h> int main(){ float a,b,c,x1,x2; float delta,real,imag; printf("Enter a, b, c: "); while(scanf("%f%f%f",&a,&b,&c)!=EO 阅读全文
posted @ 2020-11-10 13:48 镜灬水月 阅读(129) 评论(3) 推荐(0)
摘要: 阅读全文
posted @ 2020-10-29 12:59 镜灬水月 阅读(77) 评论(4) 推荐(0)
摘要: #include <stdio.h>int main(){printf("my stuno is:202083290299\n");printf("r u crazy?\n");return 0;} #include <stdio.h> int main() { while(1) printf("5 阅读全文
posted @ 2020-10-15 15:58 镜灬水月 阅读(84) 评论(2) 推荐(0)