Create a flowchart for this java program public static void main(String[] args) { int num=1234; if(num =1) { System.out.println("Its a two digit number"); } else if(num =100) { System.out.println("Its...


Create a flowchart for this java program


public static void main(String[] args) {
int num=1234;
if(num <100 &&="" num="">=1) {
System.out.println("Its a two digit number");
}
else if(num <1000 &&="" num="">=100) {
System.out.println("Its a three digit number");
}
else if(num <10000 &&="" num="">=1000) {
System.out.println("Its a four digit number");
}
else if(num <100000 &&="" num="">=10000) {
System.out.println("Its a five digit number");
}
else {
System.out.println("number is not between 1 & 99999");
}
}


}



Jun 08, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here