摘要:
task4 编程代码 #include <stdio.h> #include <stdlib.h> #include <string.h> #define N 100 typedef struct{ char num[10]; int s1; int s2; double sum; char lev 阅读全文
摘要:
task1.1 编程代码 #include <stdio.h> #define N 4 int main() { int x[N] = {1, 9, 8, 4}; int i; int *p; // 方式1:通过数组名和下标遍历输出数组元素 for (i = 0; i < N; ++i) print 阅读全文