摘要: 任务1、2略 任务3:在屏幕上正确输出了按分数由高→低排序的信息,生成了文本文件file3.dat。 任务4: 子任务1:屏幕上正确输出了按分数由高到底排序的学生信息,生成了二进制文件file4.dat,用记事本打开文件,不直观可读。 子任务2: #include <stdio.h> #includ 阅读全文
posted @ 2020-12-26 14:29 黄昊 阅读(98) 评论(1) 推荐(0)
摘要: #include<stdio.h> #include<stdlib.h> #include<string.h> #define N 10 typedef struct student { int id; char name[20]; char subject[20]; float perf; flo 阅读全文
posted @ 2020-12-20 15:50 黄昊 阅读(77) 评论(2) 推荐(0)
摘要: 任务1: #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", 阅读全文
posted @ 2020-12-12 13:53 黄昊 阅读(105) 评论(1) 推荐(0)
摘要: 任务1:一元二次方程的根不能设置成以函数返回值的方式返回给主调函数,因为函数返回值具有唯一性,而一元二次方程的根有两个。 任务2: #include <stdio.h> long long fac(int n); int main() { int i,n; printf("Enter n: "); 阅读全文
posted @ 2020-11-26 21:16 黄昊 阅读(84) 评论(1) 推荐(0)
摘要: #include<math.h> #include<stdio.h> int main() { float a,b,c,x1,x2; float delta,real,imag; printf("Entre a,b,c:"); while(scanf("%f%f%f",&a,&b,&c)!=EOF) 阅读全文
posted @ 2020-11-14 12:04 黄昊 阅读(92) 评论(1) 推荐(0)
摘要: 任务一 #include<stdio.h> int main() { int a=5,b=7,c=100,d,e,f; d=a*b/c; e=a*c/b; f=c*b/a; printf("d=%d,e=%d,f=%d\n",d,e,f); return 0; } line6-8:对于a,b,c的乘 阅读全文
posted @ 2020-10-30 22:59 黄昊 阅读(151) 评论(1) 推荐(0)
摘要: /*A simple C program*/ #include <stdio.h> int main() { printf("hello,C\n"); return 0; } #include<stdio.h> int main() { printf("my stuno is:20208345003 阅读全文
posted @ 2020-10-16 21:05 黄昊 阅读(72) 评论(0) 推荐(0)
摘要: 1 /*A simple C program*/ 2 #include <stdio.h> 3 int main() 4 { 5 printf("hello,C\n"); 6 return 0; 7 } 阅读全文
posted @ 2020-10-16 18:18 黄昊 阅读(42) 评论(0) 推荐(0)