Guest User

Untitled

a guest
Dec 12th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. class Calculation
  2. {
  3. public int Add( int a, int b ) { return a + b; }
  4. public int Sub( int a, int b ) { return a - b; }
  5. public int Mul( int a, int b ) { return a * b; }
  6. public int Div( int a, int b )
  7. {
  8. if( ( a == 0 ) || ( b == 0 ) )
  9. return 0;
  10. else
  11. return a / b;
  12. }
  13. public void Print( int c )
  14. {
  15. System.Console.WriteLine( "Print : {0}", c );
  16. }
  17. }
Add Comment
Please, Sign In to add comment