Вывести на экран квадрат из 10х10 букв S используя цикл while. Буквы в одной строке не разделять. (Программирование на Java) int m = 10;
int n = 10;
int a = 10;
int b = 10;
while (m >= 0)
{
System.out.print("S");
m--;
}
while (n >= 0)
{
System.out.println("S");
n--;
}
while (a >= 0)
{
System.out.print("S");
a--;
}
while (b >= 0)
{
System.out.println("S");
b--;
}
Но у меня получается не квадрат, а ерунда. Помогите, как сделать квадрат?
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Copyright © 2024 SCHOLAR.TIPS - All rights reserved.