Guest User

Untitled

a guest
Sep 24th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. //Explicit Conversion
  2. double side = 10.5;
  3. int area;
  4. area = (int) (side * side);
  5. Console.WriteLine("Area of the square => " + area);
Add Comment
Please, Sign In to add comment