摘要:
任务三:正确输出了按分数由高到低排序的信息,生成了文本文件file3.dat,正确并且是直观可读的。 任务四:正确输出生成了,不直观可读 #include<stdio.h> #include<stdlib.h> #define N 10 typedef struct student { int nu 阅读全文
摘要:
// ex1.cpp #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 阅读全文