上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 43 下一页
摘要: #include <stdio.h> #include <stdlib.h> #include <time.h> struct card{ int suit; int face; }; void deal(struct card *wdeck){ int i , m, t; static int t 阅读全文
posted @ 2021-09-25 16:00 就是想学习 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 输入n(n<10)个整数,统计其中素数的个数。要求程序由两个文件组成,一个文件中编写main函数,另一个文件中编写素数判断的函数。使用文件包含的方式实现。 主函数 #include "prime.h" int main(void){ int i, n, count; scanf("%d", &n); 阅读全文
posted @ 2021-09-23 14:45 就是想学习 阅读(136) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int max(int a[], int m, int n){ int k, u ,v; if (m ==n) { return a[m]; } k = (m+n)/2; u = max(a, m ,k); v = max(a, k+1, n); return 阅读全文
posted @ 2021-09-21 14:52 就是想学习 阅读(53) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int gcd(int m, int n); void reverse(int num); int main(void){ int m, n; scanf("%d", &m); reverse(m); // scanf("%d%d",&m, &n); // pr 阅读全文
posted @ 2021-09-21 14:18 就是想学习 阅读(38) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #define MAXN 100 int Count = 0; void select_(int a[], int option, int value); void input_array(int a[]); void print_array(int a[]); 阅读全文
posted @ 2021-09-21 13:11 就是想学习 阅读(107) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> struct student{ int num; char name[40]; int computer, english, math; double average; }; int update_score(struct student *p, int n, 阅读全文
posted @ 2021-09-19 13:40 就是想学习 阅读(77) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> struct student{ int num; char name[40]; int computer, english, math; }; int main(void){ int i; struct student students[5] = { {1,"B 阅读全文
posted @ 2021-09-19 12:18 就是想学习 阅读(126) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> struct student{ int num; char name[40]; int computer, english, math; double average; }; int main(void){ int i, index, j ,n; struct 阅读全文
posted @ 2021-09-19 11:18 就是想学习 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 人的出生日期由年、月、日组成,请在例9-1中的学生信息结构中增加一个成员:出生日期,用嵌套定义的方式重新定义该结构类型 #include <stdio.h> struct birth{ int year, month, day; }; struct student{ int num; char na 阅读全文
posted @ 2021-09-19 11:01 就是想学习 阅读(164) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> struct complex_number{ int real; int imaginery; }; int main(void){ return 0; } 阅读全文
posted @ 2021-09-19 10:46 就是想学习 阅读(34) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 43 下一页