Advertisement
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 z6
- {
- 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());
- Console.Write("c = ");
- double c = double.Parse(Console.ReadLine());
- //double res = a * b;
- Console.Write("(" + "{0:0.00}", a + " + ");
- Console.Write("{0:0.00}", b + ")" + " + ");
- Console.Write("{0:0.00}", c + " = ");
- Console.Write("{0:0.00}", a + "(");
- Console.Write("{0:0.00}", b + " + ");
- Console.WriteLine("{0:0.00", c + ") ");
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement