मराठी

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 - Computer Applications

Advertisements
Advertisements

प्रश्न

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.nextlnt(); 
do 
  ( 
  r = n % 10; 
  n = n / 10; 
  System.out.println(r); 
  } 
while (n != 0); 
 }
}
थोडक्यात उत्तर

उत्तर

import java.util.*;
class Number{
public static void main(String args[1){
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.printin(r);
}
}}
shaalaa.com
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 1.09: Iterative Constructs in Java - EXERCISES [पृष्ठ १२३]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
पाठ 1.09 Iterative Constructs in Java
EXERCISES | Q IV. 2. | पृष्ठ १२३
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×