c++

c++

Xojiakbar
int a , i = 0;
cout << "a = " ;
cin >> a ;

while (i < a) {
i++ ;
cout << i << " ";
}


Report Page