Computer Applications
Rewrite the following program using while loop:
import java.util.*;
class Number
{
public static void main(String args[])
{
int n,r;
Scanner in = new Scanner(System.in);
System.out.println("Enter a number");
n=in.nextInt();
do
{
r=n%10;
n=n/10;
System.out.println(r);
}
while(n!=0);
}
}
Java Iterative Stmts
27 Likes
Answer
import java.util.*;
class Number
{
public static void main(String args[])
{
int n,r;
Scanner in = new Scanner(System.in);
System.out.println("Enter a number");
n=in.nextInt();
while (n != 0) {
r=n%10;
n=n/10;
System.out.println(r);
}
}
}
Answered By
16 Likes
Related Questions
Give the output of the following program segment and also mention how many times the loop is executed.
int i; for(i = 5; i > 10; i++) System.out.println(i); System.out.println(i * 4);
Rewrite the following program using for loop:
int i=1; int d=5; do { d=d*2; System.out.println(d); i++; } while (i<=5);
What is for loop? What are the parameters used in for loop?
Define the following with their constructs:
(a) Entry controlled loop
(b) Exit controlled loop