Guest User

Untitled

a guest
Oct 11th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. src code
  2. /*
  3. * C# Program to Check whether the Entered Number is Even or Odd
  4. */
  5. using System;
  6.  
  7. namespace check1
  8. {
  9. class Program
  10. {
  11. static int Main(string[] args)
  12. {
  13. double a = 2.0;
  14. int i = (int)a;
  15. if (i != 2)
  16. Console.Write("IS this it: "+i);
  17. uint ui = (uint)a;
  18. if (ui != 2)
  19. Console.Write("IS this it: "+ui);
  20. Console.Write("END of program\n");
  21.  
  22. return 0;
  23. }
  24. }
  25. }
Add Comment
Please, Sign In to add comment