摘要: Task1 #include <stdio.h>#define N 4#define M 2void test1(){ int x[N]={1,9,8,4}; int i; //输出数组x所占用的字节 printf("sizeof(x)=%d\n",sizeof(x)); //输出每个元素占据的地址 阅读全文
posted @ 2024-11-10 17:42 nightmare777 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 实验1 #include <stdio.h> char score_to_grade(int score); int main(){ int score; char grade; while(scanf("%d",&score)!=EOF){ grade=score_to_grade(score); 阅读全文
posted @ 2024-10-29 21:46 nightmare777 阅读(5) 评论(0) 推荐(0) 编辑
摘要: task1.c #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define N1 397 #define N2 476 #define N3 21 int main(){ int cnt; int rand 阅读全文
posted @ 2024-10-10 14:54 nightmare777 阅读(18) 评论(0) 推荐(0) 编辑
摘要: task1_1.c 源代码 // 打印一个字符小人 #include <stdio.h> int main() { printf(" O \n"); printf("<H>\n"); printf("I I\n"); printf(" O \n"); printf("<H>\n"); printf( 阅读全文
posted @ 2024-09-29 14:56 nightmare777 阅读(8) 评论(0) 推荐(0) 编辑