In this C# exercise, you are asked to write a program that prompts the user for 5 numbers, stores them in an array, and displays them in reverse order. ...
In this C# exercise, you are asked to write a program that checks if a given data belongs to a previously created list. The steps to follow are:
In this C# exercise, you are asked to write a program that asks the user for 10 integer numbers and displays the even ones. This exercise w...
In this C# exercise, you are asked to write a program that asks the user for 10 real numbers and displays the average of the positive ones and the average of t...
In this C# exercise, you are asked to write a program that asks the user for several numbers (until they enter the word "end") and then displays the sum of the...
In this C# exercise, you are asked to write a program that asks the user for marks for 20 pupils (2 groups of 10, using a two-dimensional array), and then disp...
In this C# exercise, you are asked to create a statistical program that allows the user to perform the following actions: - Add new data - See all data ...
In this C# exercise, you are asked to create a struct to store data of 2D points. The fields for each point will be: - x coordinate (short)
In this C# exercise, you are asked to expand the previous exercise that used a struct to store 2D points. Now, you need to store up to 1,000 points usin...
In this C# exercise, you are asked to expand the previous exercise (array of points) so that the program displays an interactive menu. The menu should a...
In this C# exercise, you are asked to create a small database that will be used to store information about books. For each book, the following data should be kept:
In this C# exercise, you are asked to create a program that asks the user for their name and then displays a triangle made from that name, starting with 1 letter and ...
In this C# exercise, you are asked to create a program that asks the user for their name and a size, then displays a hollow rectangle made from that name.
In this C# exercise, you are asked to create a program that asks the user for their name and a size, then displays a hollow rectangle made from t...
In this exercise, you are asked to create a database to store information about cities. In the first approach, you will store only the name...
This Exercise in C# involves creating a program that imitates the basic Unix SysV "banner" utility, allowing you to display large texts in a similar manner. The purpo...
This Exercise in C# involves creating a program that asks the user for a text string and displays a right-aligned triangle using that string. The triang...
This Exercise in C# involves creating a program that asks the user for a text string and performs three specific transformations on it. The program must...
This Exercise in C# involves creating a struct to store two pieces of data for a person: their name and their date of birth. The date of birth...
This Exercise in C# involves creating a program that asks the user for 10 integer numbers (from -1000 to 1000), sorts them, and then displays them in ascending...
This Exercise in C# involves creating a program that declares a 70x20 two-dimensional array of characters and "draws" 80 letters (e.g., 'X') in random positions withi...
This Exercise in C# involves creating a program that declares a 70x20 two-dimensional array of characters and "draws" a circumference with a radius of 8 inside it. To...
Exercise in C# involves creating a program that can store up to 1000 records of computer programs. For each program, the following data should be stored: name,...
This exercise in C# consists of creating a program that can store up to 2000 "to-do tasks". Each task must store the following data: • Date (a set of 3 data: ...
This exercise in C# consists of creating a program that can store up to 10,000 costs and revenues, to create a small domestic accounting system. For eac...