摘要: 实验4 #include <stdio.h> #include<string.h> #include<stdlib.h> #define N 100 typedef struct { char num[10];/*学号*/ int s1;/*期末成绩*/ int s2;/*平时成绩*/ float 阅读全文
posted @ 2023-05-30 14:19 美琦 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 实验1 代码 #include <stdio.h> #include<stdlib.h> #define N 4 int main() { int x[N] = {1, 9, 8, 4}; int i; int *p; // 方式1:通过数组名和下标遍历输出数组元素 for (i = 0; i < 阅读全文
posted @ 2023-05-04 17:16 美琦 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 实验1 代码 #include <stdio.h> #include<stdlib.h> #define N 4 int main() { int a[N] = {2, 0, 2, 3}; char b[N] = {'2', '0', '2', '3'}; int i; printf("sizeof 阅读全文
posted @ 2023-04-14 20:50 美琦 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 实验1 #include <stdio.h> #include <stdlib.h> #include <time.h> #include <windows.h> #define N 80 void print_text(int line, int col, char text[]); // 函数声 阅读全文
posted @ 2023-04-02 17:08 美琦 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 1.代码 #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(time(0) 阅读全文
posted @ 2023-03-22 21:55 美琦 阅读(6) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <stdlib.h> int main ( ) { printf(" 0\n"); printf("<H>\n"); printf ("I I\n"); system("pause"); return 0; } 实验1结果 实验1.2 #inc 阅读全文
posted @ 2023-03-02 17:15 美琦 阅读(21) 评论(0) 推荐(0) 编辑