Computer Science, asked by anmol93223, 4 months ago

write a program to print square of 1 to 10 using for loop​

Answers

Answered by lavnishj
0

Answer:

for(int i=1;i<11;++i) {

print(i*i) ;

}

The syntax may vary for languages but this should be the general layout

Similar questions