Computer Science, asked by jassjasmeet, 1 month ago

write down the program using for the statement?​

Answers

Answered by sandipkeshri765
0

Answer:

public class for

{

public static void main(String args [ ])

{

for (int i = 1; i <= 10; i++)

{

System.out.println (i);

}

}

}

Similar questions