С помощью операторов цикла вывести на экран 54321 4321 321 21 1
С помощью операторов цикла вывести на экран
54321
4321
321
21
1
Ответ(ы) на вопрос:
Гость
Using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication7
{
class Program
{
static void Main(string[] args)
{
for (int i = 5; i >= 1; i--)
{
for (int j = i; j >= 1; j--)
{
Console.Write(j);
}
Console.WriteLine();
}
Console.ReadKey();
}
}
}
Не нашли ответ?
Похожие вопросы