摘要: 四、实验任务4 task4.c #include <stdio.h> #include <stdlib.h> #include <string.h> const int N = 5, M = 100; int main() { char ch[M]; int n = 0; FILE *fp; fp 阅读全文
posted @ 2023-06-15 09:31 辛思齐(小熊虫版) 阅读(15) 评论(0) 推荐(0)
摘要: 4.实验任务4 task4.c #include <stdio.h> #include<string.h> #define N 100 typedef struct { char num[10]; // 学号 int s1; // 期末成绩 int s2; // 平时成绩 double sum; / 阅读全文
posted @ 2023-05-29 21:06 辛思齐(小熊虫版) 阅读(23) 评论(0) 推荐(0)
摘要: 1. 实验任务1 task1_1.c #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) 阅读全文
posted @ 2023-05-11 10:26 辛思齐(小熊虫版) 阅读(35) 评论(0) 推荐(0)
摘要: 1、实验任务1 task1_1.c #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) = 阅读全文
posted @ 2023-04-19 20:02 辛思齐(小熊虫版) 阅读(17) 评论(0) 推荐(0)
摘要: 一、实验任务1 task1.c #include <stdio.h> #include <stdlib.h> #include <time.h> #include <windows.h> #define N 80 void print_text(int line, int col, char tex 阅读全文
posted @ 2023-04-05 15:30 辛思齐(小熊虫版) 阅读(45) 评论(0) 推荐(0)
摘要: 1、实验任务1 task1.c #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define R1 586 #define R2 701 int main() { int number; int i; sra 阅读全文
posted @ 2023-03-23 13:58 辛思齐(小熊虫版) 阅读(57) 评论(0) 推荐(0)
摘要: 1.实验任务1 task1_1 #include<stdio.h> int main() { printf(" o \n"); printf("<H>\n"); printf("I I\n"); printf(" o \n"); printf("<H>\n"); printf("I I\n"); r 阅读全文
posted @ 2023-03-08 12:42 辛思齐(小熊虫版) 阅读(44) 评论(2) 推荐(0)