This blog is for Automation Test Engineers

Sunday, 3 September 2017

Print square root from 1 to 10



int c=1,d=10;
while(c<=d){
System.out.println(c*c);
c++;
}


0

0 comments:

Post a Comment