#include<iostream>
using namespace std;
int main()
{
int a[10];
for(int i = 0; i <10; i ++) cin>>a[i];
for(int i=0;i <10;i++)
{
int x = 1;
if(a[i] > 0) x = a[i];
cout << "X[" << i << "] = " << x << endl;
}
return 0;
}
不需要设置数组
真棒!
爸爸爱你(づ ̄3 ̄)づ