摘要: task1 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用的内存字节数 10 printf("sizeof(x 阅读全文
posted @ 2024-11-08 11:51 yueTO 阅读(4) 评论(0) 推荐(0) 编辑
摘要: task1 1 #include<stdio.h> 2 char grade(int score) 3 { 4 char a; 5 switch(score/10) 6 { 7 case 10: 8 case 9:a = 'A';break; 9 case 8:a = 'B';break; 10 c 阅读全文
posted @ 2024-10-25 20:19 yueTO 阅读(11) 评论(0) 推荐(0) 编辑
摘要: task1 Q1:赋值random_no班级内学号的随机值 Q2:赋值random_no班级内奇安信班学号的随机值 Q3:随机抽取班级内同学的学号 task2 1 #include <stdio.h> 2 #include <math.h> 3 4 int main() { 5 double a, 阅读全文
posted @ 2024-10-09 21:07 yueTO 阅读(9) 评论(0) 推荐(0) 编辑
摘要: task1.1c 1 #include<stdio.h> 2 int main() 3 { 4 printf(" O\n"); 5 printf("<H>\n"); 6 printf("I I\n"); 7 printf(" O\n"); 8 printf("<H>\n"); 9 printf("I 阅读全文
posted @ 2024-09-28 13:14 yueTO 阅读(9) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/yueTO233 阅读全文
posted @ 2024-09-25 16:51 yueTO 阅读(4) 评论(0) 推荐(0) 编辑