This exercise focuses on working with arrays in C#. The program will prompt the user to enter 5 numbers, which will be stored in an array. Once all the numbers have been entered, t...
This exercise involves creating and searching within a list of floating-point numbers in C#. The program will first ask the user how many numbers they want to enter and store them ...
This exercise focuses on working with arrays and conditionals in C#. The program will prompt the user to enter 10 integer numbers, store them in an array, and then display only the...
This exercise focuses on working with arrays, loops, and conditional statements in C#. The program will ask the user to enter 10 real numbers (floating-point), store them in an arr...
In this exercise, you will practice handling user input, loops, and conditionals in C#. The program will continuously ask the user to enter numbers until they type "end". After eac...
This exercise focuses on working with two-dimensional arrays in C#. The program will ask the user to enter the marks of 20 pupils, divided into two groups of 10 students each. Afte...
This exercise focuses on creating a statistical program in C# that allows users to manage numerical data dynamically. The program provides a menu with different options: adding new...
This exercise focuses on using C# structures (structs) to define and manage 2D points with associated RGB color values. Each point will have x and y coordinates (short) and three c...
This exercise builds upon the previous struct-based 2D point storage by extending it to handle up to 1,000 points. A struct named `Point2D` will be used to store the x and y coordi...
This exercise expands the previous one, where an array of `Point2D` structs was used to store multiple points with x and y coordinates and RGB color values. Now, the program will p...
This exercise involves creating a small database to store information about books, such as the title and the author. The program will be able to store up to 1,000 books, and the us...
In this exercise, the program will ask the user for their name and display a triangle pattern with the name. The triangle will start with the first letter of the name and will grad...
In this exercise, the program will ask the user for their name and a size, and then display a hollow rectangle using the provided name. The rectangle will have the user’s name as i...
In this exercise, the program will ask the user to input a string, and then display a centered triangle with each line progressively displaying one more character from the string. ...
This program will allow you to manage a database of cities. You can store the city names and their population (up to 500 cities). The program will include a menu that provides seve...
This program imitates the basic Unix SysV "banner" utility. The program will take a string input from the user and display it in large ASCII characters, similar to the "banner" com...
This C# program takes an input string from the user and displays it in the form of a right-aligned triangle. The triangle starts with a single character from the input string and p...
This C# program performs several operations on a string input by the user. First, it replaces all lowercase "a"s by uppercase "A"s, unless they are preceded by a space. Then, it ex...
This C# program demonstrates the use of structs to store personal information. The first struct stores the name and date of birth of a person, where the date of birth is represente...
This C# program asks the user to input 10 integer numbers, each ranging from -1000 to 1000. After collecting all the numbers, the program sorts them in ascending order and then dis...
This C# program declares a 70x20 two-dimensional array of characters and randomly places 80 "X" characters in various positions within the array. After the random placement, it dis...
In this C# program, we declare a 70x20 two-dimensional array of characters and "draw" a circumference with a radius of 8 inside it. The program calculates the points that make up t...
In this C# program, we will create a system to store and manage up to 1000 records of computer programs. Each program will have the following attributes: Name, Category, Descriptio...
This C# program helps to manage a list of to-do tasks by storing up to 2000 tasks. For each task, the program keeps track of the date (day, month, year), a description of the task,...
This C# program is designed to manage expenses and revenues for a small domestic accounting system. The program allows the user to store up to 10,000 records for expenses and reven...