摘要: 实验任务1 // 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("fil 阅读全文
posted @ 2020-12-24 21:15 麻凯文 阅读(52) 评论(0) 推荐(0)
摘要: 实验任务1 #include <stdio.h> #include <math.h> int main(){ int a,b; scanf("%d %d",&a,&b); printf("%d+%d=%d\n",a,b,a+b); return 0; } 实验任务2 /* 循环打印字符 */ #in 阅读全文
posted @ 2020-12-24 00:10 麻凯文 阅读(73) 评论(0) 推荐(0)
摘要: 实验task1 // P280例8.15 // 对教材上的程序作了微调整,把输出学生信息单独编写成一个函数模块 // 打印不及格学生信息和所有学生信息程分别调用 #include<stdio.h> #include<stdlib.h> #include<string.h> #define N 5 / 阅读全文
posted @ 2020-12-23 23:45 麻凯文 阅读(36) 评论(0) 推荐(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-17 09:48 麻凯文 阅读(92) 评论(0) 推荐(0)
摘要: // 一元二次方程求解 (函数实现方式) // 重复执行, 直到按Ctrl+Z结束 #include <math.h> #include <stdio.h> // 函数声明 void solve(double a, double b, double c); // 主函数 int main() { d 阅读全文
posted @ 2020-12-05 22:36 麻凯文 阅读(33) 评论(0) 推荐(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; } 因为整型数据计 阅读全文
posted @ 2020-11-04 21:03 麻凯文 阅读(66) 评论(0) 推荐(0)