Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Task 005, Chapter 1.0
- using System;
- public class RectangleArea
- {
- static void Main()
- {
- double a = double.Parse(Console.ReadLine());
- double b = double.Parse(Console.ReadLine());
- double area = a * b;
- Console.WriteLine(area);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment