System.Int32 value
using System;
class MainClass
{
public static void Main(string[] args)
{
System.Int32 intA = 1001;
System.Int32 intB = 1000;
if(intA == intB)
Console.WriteLine("Same value!\n");
else
Console.WriteLine("Not the same value!\n");
}
}
Output Not the same value!
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
|