摘要:
#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 阅读全文
摘要:
输入n(n<10)个整数,统计其中素数的个数。要求程序由两个文件组成,一个文件中编写main函数,另一个文件中编写素数判断的函数。使用文件包含的方式实现。 主函数 #include "prime.h" int main(void){ int i, n, count; scanf("%d", &n); 阅读全文
摘要:
#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 阅读全文
摘要:
#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 阅读全文
摘要:
#include <stdio.h> struct student{ int num; char name[40]; int computer, english, math; double average; }; int update_score(struct student *p, int n, 阅读全文
摘要:
#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 阅读全文