- Display the numbers from 0 to 10
- Display numbers from 100 to 200
- Display numbers from 100 to 200 in reverse order
- Display only even numbers from 0 to 50
- Find and display the sum of the numbers from 0 to 100
- Find and display the product of numbers from 1 to 10
- Read a number from the keyboard and print all its digits separately
- Print the fractional and integer parts of a number separately
- Find the maximum digit in the number
- Find the minimum digit in the number
- Write a program that outputs a number in letters. Example: 117 is one hundred and seventeen
- Find and output the sum of digits of a number
- Read a string from the keyboard, output it backwards
- Declare an array with 10 elements, fill it with elements from 0 to 9 and output it
- Read the size of the array from the keyboard. Enter an array of ints from the keyboard
- Find the sum of the array elements
- Find the product of the array elements
- Find the minimum element of the array
- Find the maximum element of the array
- Find the arithmetic mean of the array elements
- Swap the minimum and maximum elements of the array
- Read from the keyboard the size of two arrays, compare them element by element
- Double the value of all elements of the array
- Read from the keyboard an array of strings of user-defined size. Read another string, output all the strings containing the given string and the index from which such a substring begins
- Read from the keyboard an array of strings of user-defined size. Read one more string, remove the occurrence of the given string from all strings
- Read a string from the keyboard, split by semicolon. Add the elements to an array
- Read from the keyboard a string in which numbers are entered through the comma and decompose them into a numeric array
- Read from the keyboard an array of strings of user-defined length. Each of the lines contains semicolons. Parse through them and add them into an array of structures
- Describe a book with a structure. Display the book data on the screen
- Devise a way to store the book data in a single line. Read the book information from the keyboard and fill in the structure
- Devise a way to store an array of books in a string. Read book information from the keyboard and fill in an array of structures
- Describe a library with a structure. Devise a way to store library data in a file
- Create a file describing several libraries and read data from it into an array of structures
- Output the name of the library with the largest number of books
- Output the name of the library containing books by the largest number of authors
- Generate an 11-element array containing all digits from 0 to 10, but in any order
- Use a structure to describe a playing card
- Generate an ordered deck of cards
- Shuffle the deck of cards
- Find the positions of all aces in the deck
- Move all spade cards to the beginning of the deck
- Save the deck of cards to a file
- Read the deck of cards from the file
- Read 2 numbers from the keyboard, 1e (length) is the length of the array, 2e (max) is the value of the maximum element of the array. Generate such an array that it contains all elements from max - length to max, but in any order
- Sort an array of 39. Bubble