Advertisement
Guest User

MultipleOperations

a guest
Jan 22nd, 2016
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.26 KB | None | 0 0
  1. using System;
  2.  
  3. class MultipleOperations
  4. {
  5.     static void Main()
  6.     {
  7.         Console.WriteLine(-1 + 3 * 5);
  8.         Console.WriteLine((24 - 5) % 7);
  9.         Console.WriteLine(15 + -4 * 6 / 11);
  10.         Console.WriteLine(2 + 10 / 6 * 1 - 7 % 2);
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement