Advertisement
deyanivanov966

07. Projects Creation

Apr 5th, 2021
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.44 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Nums1_10
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string architectName = Console.ReadLine();
  10.             int projectNumber = int.Parse(Console.ReadLine());
  11.  
  12.             int numberHours = projectNumber * 3;
  13.             Console.WriteLine($"The architect {architectName} will need {numberHours} hours to complete {projectNumber} project/s.");
  14.  
  15.         }
  16.     }
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement