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.dz3;
- /**
- *
- * @author student
- */
- public class Main {
- /*
- Задача2
- Создать метод, который выводит символ c - параметр данного метода
- в виде элементов таблицы из n-строк и m-столбцов - параметров данного метода
- public static void printTable(char c, int n, int m){
- }
- Проверить данный метод вызвать в методе main
- Пример
- Символ: A Кол-во строк: 2 Кол-во столбцов: 3
- Вывод:
- A A A
- A A A
- */
- public static void printTable(char c, int n, int m){
- // for или while
- //System.out.println(c);
- //System.out.print(c);
- for (int i = 0; i < n; i++) {
- for (int j = 0; j < m; j++) {
- // System.out.print(c);
- // System.out.print(' ');
- System.out.print(c + " ");
- }
- //System.out.println("");
- System.out.println();
- }
- }
- //
- public static void main(String[] args) {
- // вызов метода printTable
- printTable('A', 2, 4); // 2-кол-во строк, 3-кол-во столбцов
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement