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 myapp7;
- public class MyApp7 {
- /*
- Задача1
- Написать код который выводит целые числа от 10 до 1
- (т. е. вывод чисел в обратном порядке)
- (решить задачу с помощью цикла for)
- */
- public static void main(String[] args) {
- // TODO code application logic here
- // используем оператор -- (i = i -1)
- for(int i = 10; i>0; i--){
- System.out.println(i);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement