C++ 用c输出一维数组的基本方式。
#include <stdio.h>
main ( )
{
int a[10]={1,2,3,4,5,6,7,8,9,10};
for(int i=0; i<10; i++)
printf("%d\n",a[i]);
}
2020.5.25
C++ 用c输出一维数组的基本方式。
#include <stdio.h>
main ( )
{
int a[10]={1,2,3,4,5,6,7,8,9,10};
for(int i=0; i<10; i++)
printf("%d\n",a[i]);
}
2020.5.25