[此贴子已经被作者于2021-4-21 16:48编辑过]
#include<stdio.h> void main() { int i,a[10]; for(i=0; i<10; i++) { a[i]=i; printf("%d",a[i]); } }