Please login to save your progress.
Variables and Standard Types
Exercise: Declare a number using a primitive type
Goal
Declare an integer (int) variable using the primitive type alias, 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 9 of 17