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