how do you convert a code in JAVA to a flowchart | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

how do you convert a code in JAVA to a flowchart

the code in java is: import java.util.*; public class Program { public static void main(String[] args) { Scanner multi = new Scanner(System.in); int a = multi.nextInt(); System.out.println("Multiplication Table of "+a+" from 1 to infinity!"); for(int i = 1;i<Double.POSITIVE_INFINITY;i++){ System.out.println(a+" * "+i+" = "+(a*i)); } } }

30th Apr 2020, 4:54 PM
Arav
Arav - avatar
3 Answers
30th Apr 2020, 5:00 PM
Rohit
0
yes i have a basic idea of flowcharts, but i cant make a flowchart for programs, could you make it for me if possible?
30th Apr 2020, 5:29 PM
Arav
Arav - avatar