C# exercises and solutions |
|||||||||||||||||||||||||||
C# exercisesAccording to my own experience as software developer and lecturer, practicing exercises is an important activity to learn a programming language. In this page you will find a lot of C# exercises to help you test your knowledge and skill of writing code in C# and practice the C# programming lessons. You will start from basic C# exercises to more complex exercises. The solution is provided for each exercise. If you have any questions regarding to each problem, you can post them at our forum. Exercise 1: Write C# code to declare a variable to store the age of a person. Then the output of the program is as an example shown below:You are 20 years old. Solution: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Csharp_exercises { class Program { static void Main(string[] args) { int age = 20;// declaring variable and assign 20 to it. Console.WriteLine("You are {0} years old.",age); Console.ReadLine(); } } } Exercise 2: Write C# code to display the asterisk pattern as shown below:***** ***** ***** ***** ***** Solution:
using System; 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; 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;
|
|||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||