Please login to save your progress.
Variables and Standard Types
Exercise: Declare an instance of the 'Int32' type
Goal
Declare the same number again, using the actual source type (Int32), with a value of 100.
x
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
8
}
9
}
Page 10 of 17