摘要:
task1: 1 #include<stdio.h> 2 #include<stdlib.h> 3 #define N 4 4 #define M 2 5 6 7 void test1(){ 8 int x[N]={1,9,8,4}; 9 int i; 10 11 printf("sizeof(x) 阅读全文
摘要:
task1: 1 #include<stdio.h> 2 3 char score_to_grade(int score); 4 5 int main() { 6 int score; 7 char grade; 8 9 while (scanf_s("%d",&score) != EOF) { 1 阅读全文
摘要:
task1: 问题1 随机数求余后结果为1,生成0397到0476中的随机数 问题2 随机数求余后结果为0,生成0001到0021中的随机数 问题3 随机生成5个不同的学号 task2: 实验3: task4: 1 #include <stdio.h> 2 int main() 3 { 4 doub 阅读全文
摘要:
任务1: task1.1 1 #include <stdio.h> 2 3 4 5 int main() 6 { 7 printf(" o \n"); 8 printf(" <H> \n"); 9 printf(" I I \n"); 10 printf(" o \n"); 11 printf(" 阅读全文