Advertisement
Guest User

1

a guest
Feb 18th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. package com.javarush.task.task04.task0430;
  2.  
  3. /*
  4. От 1 до 10
  5. */
  6.  
  7. import java.io.*;
  8.  
  9. public class Solution {
  10. public static void main(String[] args) throws Exception {
  11. //напишите тут ваш код
  12. int number = 1;
  13. while (number <= 10) {
  14. System.out.println(number);
  15. number++;
  16. }
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement