Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public static void main(String[] args) {
- int i = 1;
- do{
- System.out.println(i);
- i=i+1;
- }while(i<11);
- }
- or
- /*
- do{
- System.out.println(i++);
- }while(i<11);
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement