Repository created to share the projects I developed during the 2nd year of my technical computer course with the aim of learning programming logic using the C# language.
The program was developed to introduce students to the C# programming language and consists of displaying the data entered by the user in the text field as an alert message.
Calculator developed with the aim of using the basic operators in the C# language (addition, subtraction, multiplication and division).
The application was developed with the aim of testing the knowledge acquired during the first stage of the course and consists of two questions: one to take the user's data, save it in a variable and display it on the screen, and another question to calculate the value of each installment (based on the data provided by the user).
The exercise consists of 12 questions to test the student's knowledge of the IF decision structure.
Program created with the aim of making a simple user registration, just validating some data entered by the user and the tax value from the data entered by the user.
Project developed with the aim of consolidating the content learned about the WHILE repetition structure.
Application developed with the aim of teaching more about the IF structure. To do this, the user must enter three salaries, and the code will check them and display the highest one.
The program consists of three exercises designed to teach students how to create and use methods in C#.
The final test of the second stage was designed to put into practice the main content learned over the last few months. It consists of two parts: one for static user registration that validates the entered fields, and another to display all the numbers in a sequence specified by the user using a repeat loop.
Project created to display numbers to the user in descending order using the FOR repetition structure.
Project developed with the aim of consolidating the content learned about the main repetition structures (for, while and do-while).
Program designed to train more about the IF conditional structure and the WHILE repetition structure, complementing exercise 10.
Project created to display all the even numbers in an array, with the main objective of training knowledge about vectors and the FOR structure in C#.
Application developed to create drawings through tables using the FOR structure.
Project created in order to train more about array, by summing the values present in its structure.
Program designed to teach the contents of vectors, storing random numbers from a value determined by the user and obtaining some information about the generated structure, such as the largest and smallest value present in it, among other data.
Application created to introduce studies on matrix creation in C#, where the user enters nine values and they make up the structure of this matrix.
Three-question project developed with the aim of learning more about matrix breeding.
Student registration program developed with final stage project. Its main objective is to introduce students to the creation of a complete CRUD involving C# and SQL.
The final course test was designed to put into practice the main knowledge acquired during the year, for which two questions were developed: the first was to display drawings in a matrix, and the second consisted of creating a complete CRUD with SQL.
- C#: programming language
- .NET Framework: platform for developing and running systems and applications
To run these two projects, you'll need to install MySQL Workbench or some other similar program and run the scripts below.
- Student registration
create database school;
use school;
create table students (
id int auto_increment primary key,
name varchar(200),
age varchar(50),
unit varchar(50),
series varchar(50),
class varchar(50)
);
- Final test 3rd stage
create database company;
use company;
create table employees (
id int auto_increment primary key,
name varchar(200),
position varchar(200),
salary decimal(10,2)
);
1. Install and configure Visual Studio on your computer
- I recommend watching this video to help you
2. Clone this repository on your machine
- Create a folder on your computer for this program
- Copy the URL from the repository
- Open Visual Studio and click
Clone a repository - In the appropriate spaces paste the URL, select where you want to save the project and click the
clonebutton - Wait a while until cloning is complete