Advertisement
rukvir

HW 5

Dec 1st, 2021
1,040
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.74 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace HomeWorck_5
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             int oldLadies = 0;
  14.             int receptionTime = 10;
  15.             int hour;
  16.             int minute;
  17.  
  18.             Console.Write("Введите кол-во старушек: ");
  19.             oldLadies = Convert.ToInt32(Console.ReadLine());
  20.             hour = oldLadies * receptionTime / 60;
  21.             minute = oldLadies * receptionTime % 60;
  22.             Console.WriteLine($"Вы должны отстоять в очереди {hour} часа и {minute} минут.");
  23.            
  24.  
  25.         }
  26.     }
  27. }
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement