Question
/ //public class Looping { //public static void main(String[] args){ // //int count = 0; // //while(count = 0){ //System.out.println(i); //i--; //} //} //} //public
/
//public class Looping {
//public static void main(String[] args){
//
//int count = 0;
//
//while(count <= 30){
//System.out.println(count);
//count = count + 1;
//}
//}
//}
//public class Looping {
//public static void main(String[] args){
//
//int i = 30;
//
//while(i >= 0){
//System.out.println(i);
//i--;
//}
//}
//}
//public class Looping {
//public static void main(String[] args){
//
//int count = 0;
//
//while(count <= 18){
//System.out.println(count);
//count = count + 3;
//}
//}
//}
//public class Looping {
// public static void main(String[] args){
//
//int count = 10;
//
//while(count >= 0){
//System.out.println(count);
//count = count - 2;
//}
// }
//}
//public class Looping {
//public static void main(String[] args){
//
// int i = 5;
//
// for (i = 0; i <= 5; i++){
// for (int j = 0; j <= 5; j++) {
// System.out.print("*");
// }
//System.out.println();
//
//}
//}
//}
////public class Looping {
////public static void main(String[] args){
////
//// int i = 5;
////
//// for (i = 1; i <= 6; i++) {
//// for (int j = 1; j <= (-1 * i + 6); j++) {
////
//// System.out.print("*");
//// }
//// System.out.println("");
//// }
//}
//}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started