Tasks studies - laboratory
Write a program that prints the student's album number
(the person solving the program) to the console.
Write a program that checks whether a given integer, read from the keyboard, is even or odd. (%) operator.
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.
Write a program that allows the user to enter four floating-point numbers, and then returns the arithmetic mean of the entered numbers.
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)
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, %)
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)
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)
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