11:30 PM C Programming Sheet - 6 |
int i=1;
while(i<=10){
cout<<"I="<<i;
}
short a;
a=1;
while(a<=10){
cout<<"A*A = "<<a*a;
a++;
}
|
|
Total comments: 0 | |
11:30 PM C Programming Sheet - 6 |
int i=1;
while(i<=10){
cout<<"I="<<i;
}
short a;
a=1;
while(a<=10){
cout<<"A*A = "<<a*a;
a++;
}
|
|
Total comments: 0 | |