摘要:
task4: #include<stdio.h> int main() { FILE *fp; fp = fopen("data4.txt", "r"); if (fp == NULL) { return -1; } char t; int line_count = 0, char_count = 阅读全文
摘要:
task1: #include<stdio.h> #include<string.h> #include<stdlib.h> #define N 3 typedef struct student{ int id; char name[20]; char subject[20]; double per 阅读全文
摘要:
task1_1: 1 #include<stdio.h> 2 #define N 5 3 void input(int x[],int n); 4 void output(int x[],int n); 5 void find_min_max(int x[],int n,int *pmin,int 阅读全文
摘要:
task1: 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用的内存字节数 10 printf("sizeof( 阅读全文
摘要:
task1: Q1:将分数转为等第;整型;字符型 Q2:没有break,输出等第后将自动向下运行;字符型变量用单引号 task2: Q1:将输入中各个数字之和算出 Q2:这种算法使用迭代思想,原算法使用自然语言 task3: Q1:计算x的n次方 Q2:是; if(n == 0) return 1; 阅读全文
摘要:
任务1: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 5 #define N 5 6 #define N1 397 7 #define N2 476 8 #define N3 21 9 10 int main() 阅读全文
摘要:
任务1: 源代码1.1: 1 #include <stdio.h> 2 int main() 3 { 4 printf(" O \n"); 5 printf("<H> \n"); 6 printf("I I \n"); 7 printf(" O \n"); 8 printf("<H> \n"); 9 阅读全文