Advertisement
desislava_topuzakova

07. Projects Creation

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