Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace DataTypes_and_Variable_Exercise
- {
- class Program
- {
- static void Main(string[] args)
- {
- int numOne = int.Parse(Console.ReadLine());
- int numTwo = int.Parse(Console.ReadLine());
- int numThree = int.Parse(Console.ReadLine());
- int numFour = int.Parse(Console.ReadLine());
- int result = (numOne + numTwo) / numThree * numFour;
- Console.WriteLine(result);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment