Computer Science, asked by supriyamundra2012, 11 months ago

solve the following series (with out a flow chart) using while lóop
1. 1,4,9,16,.........100

Answers

Answered by cbss20050641
0

Explanation:

int i=1;

while (i<=10)

{

System.out.print((i*i)+",");

i++;

}

Similar questions