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 com.mycompany.app6;
- /**
- *
- * @author Admin
- */
- public class Test {
- public static void main(String[] args) {
- /*
- Задача 1
- Создать цикл, который выводит числа от 20 до -20
- кроме числа 0 на экран. (на отдельной строке)
- */
- //
- System.out.println("Вывод информации на разных строках");
- for(int i=20; i>=-20; i--){
- if(i!=0){
- System.out.println(i);
- }
- }
- // использование методов System.out.println, System.out.print
- // System.out.println("TEST1");
- // System.out.println("TEST2");
- //
- // System.out.print("TEST3");
- // System.out.print(" ");
- // System.out.print("TEST4");
- System.out.println("Вывод информации в одной строке");
- for(int i=20; i>=-20; i--){
- if(i!=0){
- System.out.print(" ");
- System.out.print(i);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement