• программа в с# которая в цикле введет 8 значений и посчитает количество негативных чисел или равных нулю?

Ответы 1

  • const int neededInputs = 8;try{    int counterNegativeNumbers = 0;    int counterInLoop = 0;    while (counterInLoop < neededInputs)    {        Console.WriteLine("Type a number, please ");        int number = Int32.Parse(Console.ReadLine());        if(number < 1)            counterNegativeNumbers++;         counterInLoop++;    }    Console.WriteLine(String.Format("You`ve written {0} negative or zero numbers", counterNegativeNumbers));}catch(FormatException ex){    Console.WriteLine("Invalid format of the number");}
  • Добавить свой ответ

Войти через Google

или

Забыли пароль?

У меня нет аккаунта, я хочу Зарегистрироваться

How much to ban the user?
1 hour 1 day 100 years