Positive and negative Write a C# program to get a number and answer whether it is positive or negative. |
Multiply if not zero Write a C# program to ask the user for a number; if it is not zero, then it will ask for a second number and display their sum; otherwise, it will display "0" |
Divide if not zero Write a C# program to ask the user for two numbers and display their division if the second number is not zero; otherwise, it will display "I cannot divide". |
Divide if not zero (Using else) Write a version of the previous program using 'else'. The program should ask the user for two numbers, and if the second number is not zero, it will display their division. Otherwise, it will display 'I cannot divide'. |
Greatest of three numbers Write a C# program that prompts the user to enter three numbers and displays the greatest one. |
Repeat until 0 Write a C# program to ask the user for a number "x" and display 10*x. It must repeat until the user enters 0 (using "while"). |
Repeat until 0 (Use Do While) Write a C# program that asks the user for a number "x" and displays 10*x. The program must repeat the process until the user enters 0, using "do-while". |
While + Counter Write a C# program to display the numbers 1 to 10 on the screen using "while". |
Multiplication table (use while) Write a C# program that prompts the user to enter a number and displays its multiplication table using a 'while' loop. |
Odd numbers descending Write a C# program to display the odd numbers from 15 to 7 (downwards) on the screen using "while". |
Showing 10 to 96 C# Programming Exercises
List of C# Programming Exercises for Beginners Grouped
All levels of the C# language and for everyone
C# Programming Exercises for all levels. Whether you are a beginning programmer or an advanced programmer. You can practice C# Programming Exercises online, easy and fast