Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package Daay4WhileEx;
- import java.util.Scanner;
- public class ex2dowhile {
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- int Num;
- Scanner s = new Scanner(System.in);
- do {
- System.out.println("enter a new number");
- Num = s.nextInt();
- }
- while ((Num%111 != 0)&&(Num % 7 != 0));
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment