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.app8;
- /**
- *
- * @author Admin
- */
- public class Test5 {
- /*
- Вывести на экран числа в виде таблицы
- (использовать for, while)
- Объявить переменные rows, cols - типа int, присвоить занчения переменным
- */
- //
- public static void main(String[] args) {
- //
- int rows = 3;
- int cols = 5;
- /*
- 1 2 3 4 5
- 1 2 3 4 5
- 1 2 3 4 5
- */
- for (int i = 1; i <= rows; i++) {
- //System.out.println(i);
- for (int j = 1; j <= cols; j++) {
- System.out.print(j);
- System.out.print(" ");
- }
- // добавление перевода строки после вывода значений таблицы
- System.out.println(); // System.out.println("");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement