Programming C#

Tasks studies - laboratory


Project maintained by dawidolko Hosted on GitHub Pages — Theme by dawidolko

LAB 1 Tasks

1.

Write a program that prints the student's album number (the person solving the program) to the console.

2.

Write a program that checks whether a given integer, read from the keyboard, is even or odd. (%) operator.

3.

Write a program that allows the user to enter two floating-point numbers, and then returns information about which of the entered numbers is the greater number.

4.

Write a program that allows the user to enter four floating-point numbers, and then returns the arithmetic mean of the entered numbers.

5.

Write a simple calculator that performs a mathematical operation (+, -, /, *) on two numbers entered from the keyboard, using the switch instruction. ### 6. Write a program that, for a natural number entered from the keyboard, prints all the numbers preceding it, starting from 0. (for, do while, while)

7.

Write a program that checks whether a natural number entered from the keyboard is a prime number (A prime number is a natural number greater than 1 that is only divisible by 1 and itself). (for, %)

8.

Using the algorithm written in task 2, write a program that prints the first 1000 prime numbers to the console window. (for, do while, while)

9.

Write a program that will allow the user to run the functionality of tasks 1-8. The program should run in a loop until the user enters the number 0. The individual functionalities should be called by entering the appropriate natural number (1 - zad1, 2 - zad2, 3-zad3, etc. 0 - closing the program). (switch case)

10.

Write a program that displays numbers on the screen according to the given structure. The height is read from the keyboard. Printout (for h = 5):

2
4,5
8,9,10
16,17,18,19
32,33,34,35,36