使用数组保存十个任意数字并且使用printf输出
int mian(){int nums = {1,2,3,4,5,6,7,8,9,10};for(int i = 0;i<10;i++){printf("%d ",nums[i]);}printf("\n");return 0;}