Advertisement
Spocoman

07. Projects Creation

Aug 21st, 2024
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1. namespace ProjectsCreation
  2. {
  3.     class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.             string name = Console.ReadLine();
  8.             int projects = int.Parse(Console.ReadLine());    
  9.  
  10.             Console.WriteLine($"The architect {name} will need {projects * 3} hours to complete {projects} project/s.");
  11.         }
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement