摘要:
实验任务4 运行结果 程序源码 #include<stdio.h> int main() { int i = 0; char ch; FILE *fp; fp = fopen("data4.txt", "r"); if(fp == NULL) { printf("读取失败\n"); return 1 阅读全文
摘要:
实验任务4 运行结果 附加;dev c 的自纠错害人不浅(bushi),忘敲return还跑起来了(doge) 程序源码 #include <stdio.h> #include<string.h> #define N 100 typedef struct { char num[10]; // 学号 阅读全文
摘要:
实验任务1-1 运行结果 程序源码 #include <stdio.h> #define N 4 int main() { int x[N] = {1, 9, 8, 4}; int i; int *p; // 方式1:通过数组名和下标遍历输出数组元素 for (i = 0; i < N; ++i) 阅读全文
摘要:
实验任务1-1 运行结果 程序源码 #include <stdio.h> #define N 4 int main() { int a[N] = {2, 0, 2, 3}; char b[N] = {'2', '0', '2', '3'}; int i; printf("sizeof(int) = 阅读全文
摘要:
实验任务1 运行结果 程序源码 #include <stdio.h> #include <stdlib.h> #include <time.h> #include <windows.h> #define N 80 void print_text(int line, int col, char tex 阅读全文
摘要:
实验任务一 运行结果 程序源码 #include<stdio.h> #include<stdlib.h> #include<time.h> #define N 5 #define R1 586 #define R2 701 int main() { int number; int i; srand( 阅读全文