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