gueal

 

2023年6月9日

实验7

摘要: 实验任务1 代码: #include <stdlib.h> #include <stdio.h> #define N 7 #define M 80 typedef struct { char name[M]; char author[M]; }Book; int main() { Book x[N] 阅读全文

posted @ 2023-06-09 18:18 gueal 阅读(8) 评论(0) 推荐(0) 编辑

2023年5月25日

实验6

摘要: 实验任务4 代码: #include <stdio.h> #include <string.h> #define N 100 typedef struct { char num[10]; int s1, s2; double sum; char level[10]; } STU; int fun(S 阅读全文

posted @ 2023-05-25 21:37 gueal 阅读(19) 评论(0) 推荐(0) 编辑

2023年5月11日

实验5

摘要: 实验任务1 代码: #include<stdio.h> #include<stdlib.h> #define N 4 int main() { int x[N]={1,9,8,4}; int i; int *p; for(i=0;i<N;++i) printf("%d",x[i]); printf( 阅读全文

posted @ 2023-05-11 09:09 gueal 阅读(10) 评论(0) 推荐(0) 编辑

2023年4月20日

实验4

摘要: 实验任务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)=%d\n", sizeof 阅读全文

posted @ 2023-04-20 09:10 gueal 阅读(12) 评论(0) 推荐(0) 编辑

2023年4月1日

实验3

摘要: 实验任务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[]); void 阅读全文

posted @ 2023-04-01 11:44 gueal 阅读(20) 评论(0) 推荐(0) 编辑

2023年3月20日

实验2

摘要: 实验任务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-20 23:20 gueal 阅读(13) 评论(0) 推荐(0) 编辑

2023年3月5日

实验1

摘要: 实验任务1 源码: #include<stdio.h> #include<stdlib.h> int main() { printf(" O \n"); printf("<H>\n"); printf("I I\n"); system("pause"); return 0; } #include<s 阅读全文

posted @ 2023-03-05 20:47 gueal 阅读(13) 评论(0) 推荐(0) 编辑

导航