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());
- Console.Write("(" + "{0:f}", a + " + ");
- Console.Write("{0:0.f}", b + ")" + " + ");
- Console.Write("{0:0.f}", c + " = ");
- Console.Write("{0:0.f}", a + " + (");
- Console.Write("{0:0.f}", b + " + ");
- Console.Write("{0:0.f}", c + ")");
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement