Menu
×
×
Correct!
Exercise:Create an
int x = 5;
int y = 10;
int z = x + y;
Console.WriteLine(z);
Not CorrectClick here to try again. Correct!Next ❯int x = 5; int y = 10;= x + y; Console.WriteLine( ); |