Advertisement
Guest User

Charlie Somerville

a guest
Apr 5th, 2009
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.13 KB | None | 0 0
  1. using System;
  2.  
  3. public class misc
  4. {
  5.     public static int intround(double d)
  6.     {
  7.         return (int)Math.Round(d);
  8.     }
  9. }
  10.    
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement