Форум

Информация о пользователе

Привет, Гость! Войдите или зарегистрируйтесь.


Вы здесь » Форум » Тестовый форум » 1000-7


1000-7

Сообщений 1 страница 2 из 2

1

Код:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace _1000_7
{
    internal class Program
    {
        static void Main(string[] args)
        {
            int a = 1000;
            int b = 7;
            int d = -1;
            Console.WriteLine(a+" - "+b);
            while(a>d)
            {
                if (a %2==0)
                {
                    a = a - b;
                    Console.WriteLine(a + " - " + b);
                }
                else if(a %2!=0)
                {
                   a = a - b;
                    Console.WriteLine(a + " - " + b);
                }
            }
            Console.WriteLine("You dead!");
        }
    }
}

0

2

https://upforme.ru/uploads/001b/8d/81/2/t117432.jpg

0


Вы здесь » Форум » Тестовый форум » 1000-7