Computer Science, asked by spruthi, 19 days ago

Draw a flowchart to display all 2 digit numbers
pls helppp





Answers

Answered by samarthkrv
1

Answer:

public class Main

{

public static void main(String[] args) {

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

     {

         System.out.println("i is:" + i);

     }

}

}

Explanation:

output -

i is 10 followed till i is 99

Similar questions