摘要:
任务一: 问题一:int型一维数组x在内存中是连续存放的。数组名x和&x[0]对应的值相同都是数组的首地址。 任务二:int型一维数组x在内存中是按行连续存放的。x,x[0],&x[0]在字面上其对应的值是一样的。x[0]与x[1]相差16。这个差值是相差十六个字节。 观察:形参:void inpu 阅读全文
摘要:
task1: 1 #include<stdio.h> 2 char score_to_grade(int score); 3 int main(){ 4 int score; 5 char grade; 6 7 while(scanf("%d",&score)!=EOF){ 8 grade = sc 阅读全文
摘要:
task1: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 5 #define N 5 6 #define N1 397 7 #define N2 476 8 #define N3 21 9 10 int main( 阅读全文