Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ConsoleApp1
- {
- class Program
- {
- static void Main(string[] args)
- {
- double widht = double.Parse(Console.ReadLine());
- double height = double.Parse(Console.ReadLine());
- double pixels = (widht * height) / 1000000;
- Math.Round(pixels, 1);
- Console.WriteLine("{0}x{1} => {2:F1}MP", widht, height, pixels);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment