ababin 0578aa1fd6 Обновить 'project1/readme.md' преди 10 месеца
..
bin 1137180b2f lab2 преди 10 месеца
obj 1137180b2f lab2 преди 10 месеца
Program.cs 1137180b2f lab2 преди 10 месеца
gitignore.txt 1137180b2f lab2 преди 10 месеца
project1.csproj 1137180b2f lab2 преди 10 месеца
readme.md 0578aa1fd6 Обновить 'project1/readme.md' преди 10 месеца

readme.md

Эния №195

Console.WriteLine("Введите три натуральных числа: ");
int n = Convert.ToInt32(Console.ReadLine());
int a = Convert.ToInt32(Console.ReadLine());
int b = Convert.ToInt32(Console.ReadLine());
if (n <= 100 && a <= 100 && b <= 100)
{
    int с = 2 * a * b * n;
    Console.WriteLine("Результат: " + с);
}
else
{
    Console.WriteLine("Одно или несколько чисел превышают 100. Пожалуйста, введите числа до 100.");
}

Два бандита №33

public class Program
{
    static void Main(string[] args)
    {
        int a, b, c = 10;
        a = int.Parse(Console.ReadLine());
        b = int.Parse(Console.ReadLine());
        a = c - a;
        b = c - b;
        Console.WriteLine($"{a} {b}");
    }
}

Больше-меньше №25

public class Program
{
    static void Main(string[] args)
    {
        int a, b;
        a = int.Parse(Console.ReadLine());
        b = int.Parse(Console.ReadLine());

        if (a < b)
        {
            Console.WriteLine("<");
        }
        else if (a > b)
        {
            Console.WriteLine(">");
        }
        else
        {
            Console.WriteLine("=");
        }
    }
}

A+B №1

int num1 = Convert.ToInt16(Console.ReadLine());
int num2 = Convert.ToInt16(Console.ReadLine());
int num3 = num1 + num2;
Console.WriteLine(num3)

;

Пятью пять №3

int number;
Console.WriteLine("Введите число, оканчивающееся на 5, которое хотите возвести в квадрат:");
number = int.Parse(Console.ReadLine());

if (number % 10 == 5)
{
    int result = number * number;
    Console.WriteLine("Ответ: " + result);
}
else
{
    Console.WriteLine("
Введено некорректное число.");
}