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;
- namespace z5
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.Write("a = ");
- double a = double.Parse(Console.ReadLine());
- Console.Write("b = ");
- double b = double.Parse(Console.ReadLine());
- double res = a / b;
- Console.Write(a + " / " + b + " = " + "{0:0.000}", res);
- Console.ReadKey();
- }
- }
- }
Add Comment
Please, Sign In to add comment