Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace P01Greeting
- {
- class Program
- {
- static void Main(string[] args)
- {
- string nameOfArchitect = Console.ReadLine();
- int countOfProjects = int.Parse(Console.ReadLine());
- int countOfHours = countOfProjects * 3;
- Console.WriteLine("The architect {0} will need {1} hours to complete {2} project/s."
- ,nameOfArchitect,countOfHours,countOfProjects);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement