Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- package ja9;
- /**
- *
- * @author Administrator
- */
- public class MyUtil {
- /*
- Создать класс MyUtil
- В данном классе создать метод, который выводит
- целые числа от x2 до x1 включительно в обратном порядке.
- x1, x2 - параметры метода типа int.
- Данный метод должен возвращать значение типа void.
- Вызвать данный метод в методе main в классе JA9.
- */
- public static void printNumbersInReverse(int x1, int x2){
- // for
- for(int i=x2; i>=x1; i--){
- //System.out.println(i); // выводим на отдельной строке
- System.out.print(i); // выводим на одной строке
- System.out.print(" ");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement