易大师是吃货

导航

2020年12月30日 #

实验7

摘要: 试验任务3 1.正确输出;生成了。 2.正确;直观可读。 试验任务4 正确输出;生成了;不直观可读。 #include <stdio.h> #include <stdlib.h> #define N 10 typedef struct student { int num; char name[20] 阅读全文

posted @ 2020-12-30 23:24 易大师是吃货 阅读(25) 评论(1) 推荐(0) 编辑

2020年12月23日 #

实验6

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

posted @ 2020-12-23 22:57 易大师是吃货 阅读(43) 评论(1) 推荐(0) 编辑

2020年12月15日 #

实验5

摘要: #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-15 19:34 易大师是吃货 阅读(27) 评论(1) 推荐(0) 编辑

2020年12月2日 #

实验4

摘要: #include <math.h> #include <stdio.h> // 函数声明 void solve(double a, double b, double c); // 主函数 int main() { double a, b, c; printf("Enter a, b, c: "); 阅读全文

posted @ 2020-12-02 21:40 易大师是吃货 阅读(35) 评论(1) 推荐(0) 编辑

2020年11月18日 #

实验3

摘要: #include <math.h> #include <stdio.h> int main() { float a, b, c, x1, x2; float delta, real, imag; printf("Enter a, b, c: "); while(scanf("%f%f%f", &a, 阅读全文

posted @ 2020-11-18 13:03 易大师是吃货 阅读(52) 评论(2) 推荐(0) 编辑

2020年11月8日 #

实验2

摘要: #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-08 16:59 易大师是吃货 阅读(44) 评论(2) 推荐(0) 编辑

2020年10月18日 #

实验任务

摘要: /* A simple C program */ #include <stdio.h> int main() { printf("hello, 202083290279\n2020i'm ready"); return 0; } /* 循环打印字符 */ #include <stdio.h> int 阅读全文

posted @ 2020-10-18 12:10 易大师是吃货 阅读(56) 评论(1) 推荐(0) 编辑