Permalink
Fetching contributors…
Cannot retrieve contributors at this time
|
class Test |
|
{ |
|
static void Main() |
|
{ |
|
double x = 1234.7; |
|
int a; |
|
// Cast double to int. |
|
a = (int)x; |
|
System.Console.WriteLine(a); |
|
} |
|
} |
|
// Output: 1234 |
You can't perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.