Main.cs
using
System;
class
Program {
-
public
static
int
Main() {
-
int
height;
//высота
-
char
fill;
//заполнитель
-
char
fill_no=
' '
;
//заполнение пустоты
-
Console.Write(
"Введите высоту : "
);
-
height =
int
.Parse(Console.ReadLine());
-
Console.Write(
"Введите заполнитель : "
);
-
fill = (
char
)Console.Read();
-
Console.WriteLine();
-
for
(
int
i=0; i<height; i++) {
-
for
(
int
j=0; j<=height-1+i; j++) {
-
if
(j==(height-1-i) | j==(height-1+i) | i==(height-1)) {
-
Console.Write(fill);
-
}
-
else
{
-
Console.Write(fill_no);
-
}
-
}
-
Console.WriteLine();
-
}
-
Console.ReadKey();
-
return
0;
-
}
}
using
System;
class
Program {
-
public
static
int
Main() {
-
int
height;
//высота
-
char
fill;
//заполнитель
-
char
fill_no=
' '
;
//заполнение пустоты
-
Console.Write(
"Введите высоту : "
);
-
height =
int
.Parse(Console.ReadLine());
-
Console.Write(
"Введите заполнитель : "
);
-
fill = (
char
)Console.Read();
-
Console.WriteLine();
-
for
(
int
i=0; i<height; i++) {
-
for
(
int
j=0; j<=height-1+i; j++) {
-
if
(j==(height-1-i) | j==(height-1+i) | i==(height-1)) {
-
Console.Write(fill);
-
}
-
else
{
-
Console.Write(fill_no);
-
}
-
}
-
Console.WriteLine();
-
}
-
Console.ReadKey();
-
return
0;
-
}
}
Введите высоту : 8
Введите заполнитель : *
*
* *
* *
* *
* *
* *
* *
***************
Введите заполнитель : *
*
* *
* *
* *
* *
* *
* *
***************