C# Practice Exercise On Basics (Variables)
C# Practice Exercise On Basics (Variables)
Console.WriteLine("*****");
Console.WriteLine("*****");
Console.WriteLine("*****");
Console.WriteLine("*****");
Console.WriteLine("*****");
Console.ReadLine();
}
}
}
Exercise 3: Write C# code to declare two integer
variables, one float variable, and one string
variable and assign 10, 12.5, and "C#
programming" to them respectively. Then display
their values on the screen.
Solution:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Csharp_exercises
{
class Program
{
static void Main(string[] args)
{
int x;
float y;
string s;
x = 10;
y = 12.5f;
s = "C# programming";
Console.WriteLine(x);
Console.WriteLine(y);
Console.WriteLine(s);
Console.ReadLine();
}
}
}
Exercise 4: Write C# code to prompt a user to input
his/her name and then the output will be shown as
an example below:
Hello John!
Solution:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Csharp_exercises
{
class Program
{
static void Main(string[] args)
{
string name;
Console.Write("Please enter your name:");
name = Console.ReadLine();
Console.WriteLine("Hello {0}!", name);
Console.ReadLine();
}
}
}