Advertisement
Guest User

Untitled

a guest
Apr 21st, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. Console.WriteLine("Iveskite pirma skaiciu");
  2. var pirmas = Convert.ToDouble(Console.ReadLine());
  3. Console.WriteLine("Iveskite antra skaiciu");
  4. var antras = Convert.ToDouble(Console.ReadLine());
  5. Console.WriteLine("{0} + {1} = {2}", pirmas, antras, pirmas + antras);
  6. Console.WriteLine("{0} - {1} = {2}", pirmas, antras, pirmas - antras);
  7. Console.WriteLine("{0} / {1} = {2}", pirmas, antras, pirmas / antras);
  8. Console.WriteLine("{0} * {1} = {2}", pirmas, antras, pirmas * antras);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement