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)); } } }
3 Answers
+ 2
Go through this small tutorial and try solving yourself and if by chance you are stuck then you can post it here.
https://www.google.com/url?sa=t&source=web&rct=j&url=https://www.geeksforgeeks.org/an-introduction-to-flowcharts/amp/&ved=2ahUKEwjJmvT7z5DpAhWwIbcAHavdDPcQFjAAegQIBBAB&usg=AOvVaw0kVtqTZI29PMqKcFVIZTJC&cf=1
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?