From f7335a88893a5b105fe38b29093ad235f05c3b50 Mon Sep 17 00:00:00 2001 From: Rustam Zokirov <59933997+Rustam-Z@users.noreply.github.com> Date: Thu, 23 Nov 2023 23:31:28 +0500 Subject: [PATCH 1/9] Update README.md --- README.md | 252 +++++++++++++++++++++++++++++++++++------------------- 1 file changed, 165 insertions(+), 87 deletions(-) diff --git a/README.md b/README.md index d430fda..f40e8de 100644 --- a/README.md +++ b/README.md @@ -44,99 +44,177 @@ - [tutorialspoint.com](https://www.tutorialspoint.com/cplusplus/index.htm) - [cplusplus.com](https://cplusplus.com/doc/tutorial/) - [learncpp.com](https://www.learncpp.com/) + ## Problem Solving -``` -1. C++ Program to print "Hello, World!" -2. C++ Program to Print an Integer (Entered by the User) -3. C++ Program to Add Two Integers -4. C++ Program to Multiply two Floating Point Numbers -5. C++ Program to Find ASCII Value of a Character -6. C++ Program to Compute Quotient and Remainder -7. C++ Program to Find the Size of int, float, double and char -8. C++ Program to Demonstrate the Working of Keyword long -9. C++ Program to Swap Two Numbers -10. C++ Program to Check Whether a Number is Even or Odd -11. C++ Program to Check Whether a Character is Vowel or Consonant -12. C++ Program to Find the Largest Number Among Three Numbers -13. C++ Program to Find all Roots of a Quadratic equation -14. C++ Program to Check Leap Year -15. C++ Program to Check Whether a Number is Positive or Negative -16. C++ Program to Check Whether a Character is an Alphabet or not -17. C++ Program to Calculate the Sum of Natural Numbers -18. C++ Program to Find Factorial of a Number -19. C++ Program to Generate Multiplication Table -20. C++ Program to Display Fibonacci Sequence -21. C++ Program to Find GCD of two Numbers -22. C++ Program to Find LCM of two Numbers -23. C++ Program to Display Characters from A to Z Using Loop -24. C++ Program to Count Number of Digits in an Integer -25. C++ Program to Reverse a Number -26. C++ Program to Calculate the Power of a Number -27. C++ Program to Check Whether a Number is Palindrome or Not -28. C++ Program to Check Whether a Number is Prime or Not -29. C++ Program to Display Prime Numbers Between Two Intervals -30. C++ Program to Check Armstrong Number -31. C++ Program to Display Armstrong Number Between Two Intervals -32. C++ Program to Display Factors of a Number -33. C++ Programming Code To Create Pyramid and Structure -34. C++ Program to Make a Simple Calculator Using switch...case -35. C++ Program to Display Prime Numbers Between Intervals Using Function -36. C++ Program to Check Prime or Armstrong Number Using User-defined Function -37. C++ Program to Check Whether a Number can be Expressed as Sum of Two Prime Numbers -38. C++ Program to Find the Sum of Natural Numbers using Recursion -39. C++ Program to Find Factorial of a Number Using Recursion -40. C++ Program to Find G.C.D Using Recursion -41. C++ Program to Convert Binary Number to Decimal and vice-versa -42. C++ Program to Convert Octal Number to Decimal and vice-versa -43. C++ Program to Convert Binary Number to Octal and vice-versa -44. C++ Program to Reverse a Sentence Using Recursion -45. C++ Program to calculate the power using recursion -46. C++ Program to Calculate Average Using Arrays -47. C++ Program to Find Largest Element of an Array -48. C++ Program to Calculate Standard Deviation -49. C++ Program to Add Two Matrix Using Multi-dimensional Arrays -50. C++ Program to Multiply to Matrix Using Multi-dimensional Arrays -51. C++ Program to Find Transpose of a Matrix -52. C++ Program to Multiply two Matrices by Passing Matrix to a Function -53. C++ Program to Access Elements of an Array Using Pointer -54. C++ Program Swap Numbers in Cyclic Order Using Call by Reference -55. C++ Program to Find Largest Number Using Dynamic Memory Allocation -56. C++ Program to Find the Frequency of Characters in a String -57. C++ Program to count the number of vowels, consonants and so on -58. C++ Program to Remove all Characters in a String Except Alphabet -59. C++ Program to Find the Length of a String -60. C++ Program to Concatenate Two Strings -61. C++ Program to Copy String Without Using strcpy() -62. C++ Program to Sort Elements in Lexicographical Order (Dictionary Order) -63. C++ Program to Store Information(name, roll and marks) of a Student Using Structure -64. C++ Program to Add Two Distances (in inch-feet) System Using Structures -65. C++ Program to Add Two Complex Numbers by Passing Structure to a Function -66. C++ Program to Calculate Difference Between Two Time Periods -67. C++ Program to Store Information of Students Using Structure -68. C++ Program to Store Information Using Structures with Dynamically Memory Allocation -69. C++ Program to Write a Sentence to a File -70. C++ Program to Read a Line From a File and Display it -71. C++ Program to Display its own Source Code as Output -72. C++ Programming Code To Create Pyramid and Pattern -``` +1. 1. C++ Program to print "Hello, World!". +2. C++ Program to print an integer entered by the user. +3. C++ Program to Add/Subtract/Multiply/Divide Two Integers. +4. C++ Program to Add/Subtract/Multiply/Divide Two Integers entered by the user. +5. C++ Program to Add/Subtract/Multiply/Divide two Floating Point Numbers. +6. C++ Program to Compute Quotient and Remainder. +7. C++ Program to Calculate the Area and Circumference of a Circle. +8. C++ Program to Calculate the Area of a Scalene Triangle. +9. C++ Program to Calculate the Area of an Equilateral Triangle. +10. C++ Program to Calculate the Area of Right Angle Triangle. +11. C++ Program to Calculate the Area and Perimeter of a Rectangle. +12. C++ Program to Calculate the Area and Perimeter of a Square. +13. C++ program that converts between Celsius and Fahrenheit temperatures based on user input. You can also add conversions for Kelvin. +14. C++ Program to Find ASCII Value of a Character. +15. C++ Program to Find the Size of int, float, double, and char. +16. C++ Program to Check Whether a Number is Even or Odd. +17. C++ Program to Check Whether a Number is Positive or Negative. +18. C++ Program to Check Whether a Character is a Vowel or Consonant. +19. C++ Program to find the Largest Number Among Three Numbers. +20. C++ Program to find if the entered year is a leap year or not. +21. C++ program that allows the user to perform basic arithmetic operations (addition, subtraction, multiplication, division) on two numbers. You can also add error handling for division by zero. +22. BMI Calculator: Create a program that calculates a person's Body Mass Index (BMI) based on their weight and height input. Provide a classification of whether the person is underweight, normal weight, overweight, or obese. Use cin, cout. + Formula: bmi = weight / (height * height) + + | bmi < 18.5 | Underweight | + | --- | --- | + | bmi < 24.9 | Normal Weight | + | bmi < 29.9 | Overweight | + | Otherwise | Obese | +23. Nested condition + - Get the `age` and `membership_status` as user input. `membership_status` can be only `Y` or `y`. So, if the age is bigger or equal to 18 and if the user is a member of our shop, we provide a 10% discount, else we charge fully. + - Write a simple chatbot program using nested conditions. +24. Switch + - Program to use `switch` statement. Display Monday to Sunday. + - Program to display arithmetic operator using switch case +25. C++ Program to Swap Two Numbers +26. C++ Program to Find all Roots of a Quadratic equation +27. C++ Program to Check Whether a Character is an Alphabet or not +28. C++ Program to Calculate the Sum of Natural Numbers +29. Program to calculate the sum of numbers from m to n. + - Hint: Input two numbers m and n. Find the sum of all numbers from m to n. For example m=3 and n=8 then sum will be 3 + 4 + 5 + 6 + 7 + 8 = 33. +30. Program to print Fibonacci series up to 100. + - Hint: Fibonacci Series is 1, 1, 2, 3, 5, 8, 13, 21,... +31. C++ program to print Even numbers up to 100 +32. C++ program to Generate a Multiplication Table. +33. C++ program to Calculate the Power of a Number +34. **Factorial Calculator:** Write a program that calculates the factorial of a given positive integer. Factorial of a number is the product of all positive integers from 1 to that number. +35. **Prime Number Checker:** Create a program that determines whether a given number is prime or not. A prime number is a positive integer greater than 1 that has no positive divisors other than 1 and itself. +36. C++ Program to Display Prime Numbers Between Two Intervals. +37. Program to print stars Sequence1. + + ```cpp + * + ** + *** + **** + ***** + ``` + +38. Program to print stars Sequence2. + + ```cpp + * + ** + *** + **** + ***** + ``` + +39. Program to print star Sequences3. + + ```cpp + * + *** + ***** + ``` + +40. Program to print Sequence4. + + ```cpp + * + ** + *** + **** + ***** + ***** + **** + *** + ** + * + ``` +41. Sum of Numbers: Write a program that prompts the user for an integer n and then calculates the sum of all integers from 1 to n using a for or while loop. Also, calculate the sum of all even and odd numbers. +42. Guess the Number Game: Create a simple game where the program picks a number (int number = 42;), and the user has to guess the number, receiving hints (higher or lower). Use a while loop to handle the game process. If the user guesses the number, stop the program and display the number of attempts made by the user. +43. User Menu Interaction: Create a text menu that provides the user with several options (e.g., "1. Perform action 1", "2. Perform action 2," and so on). Use a while loop to continue the program until the user chooses the exit option (system("exit");). +44. Program to display the series and find the sum of 1 + 3 + 5 + ... + n. +45. Program to display the sum of the series 1 + 1/2 + 1/3 + ... + 1/n. +46. Write a program to add the first seven terms of the following series using a for loop: 1/1! + 2/2! + 3/3! + ... +47. C++ Program to Find GCD of Two Numbers +48. C++ Program to Find LCM of Two Numbers +49. C++ Program to Display Characters from A to Z Using Loop +50. C++ Program to Count Number of Digits in an Integer +51. C++ Program to Reverse a Number +52. C++ Program to Calculate the Power of a Number +54. C++ Program to Check Whether a Number is Palindrome or Not +54. C++ Program to Check Armstrong Number +55. C++ Program to Display Armstrong Number Between Two Intervals +56. C++ Program to Convert Binary Number to Decimal and vice-versa +57. C++ Program to Convert Octal Number to Decimal and vice-versa +58. C++ Program to Convert Binary Numbers to Octal and vice-versa +59. C++ Program to Reverse a Sentence Using Recursion +50. C++ Program to calculate the power using recursion +51. Write a program to calculate the area of a circle using functions. +52. Simple Calculator Program: ****Create a program that acts as a basic calculator, allowing users to perform addition, subtraction, multiplication, and division. Use functions for each operation. +53. Write a program to swap two values using functions. +54. Write a program to convert time to minutes using functions. (input 3 variables namely hours, minutes, and seconds. Convert everything into minutes.) +55. Write a program to sum the Fibonacci series up to n (input n). 1, 1, 2, 3, 5, 8, 13, … +56. Function Overloading and Default Arguments: Build a program for calculating the area and perimeter of various geometric shapes (circle, rectangle, triangle, etc.) using separate functions for each shape. Overload functions for shapes with different parameters. +57. Employee Payroll: ****Design a program that calculates employee payroll, including basic salary, overtime pay, and deductions. Use functions to compute each component. +58. **Student Grade Tracker:** Create a program that allows teachers to enter student grades and calculate averages, find the highest and lowest scores, and display statistics. +59. **Library Management System:** Create a simple library management system where you can store and manage a list of books using arrays. Ask the user to enter the book names. You should have the function display the book names. Create a `void` function. You should have the functionality to update the book name. To do this create another function. And pass index as argument. +60. C++ Program to merge two arrays +61. C++ Program to search the value in the array and return its index, if the value is not found print “Item not found”. +62. ****Number Sorting:** Write a program that reads a list of numbers into an array and sorts them in ascending or descending order using a sorting algorithm. +63. **Matrix Operations:** Write a program for basic matrix operations, such as addition, subtraction, multiplication, and transposition. +64. In a small company, there are five salesmen. Each salesman is supposed to sell three products. Write a program using a 2D array to print **(Input from user)**. The total sales by each salesman and Total sales of each item. +65. C++ Program to Calculate Standard Deviation +66. C++ Program to Multiply two Matrices by Passing Matrix to a Function +67. C++ Program to Access Elements of an Array Using Pointer +68. Write a program that declares an integer variable, assigns a value to it, and then uses a pointer to print the value. +69. Swap the values of two integer variables using pointers. +70. Write a program that finds the sum of elements in an integer array using a pointer. +71. Create a dynamic integer array and prompt the user for the array size. Fill the array with user input values. +72. C++ Program Swap Numbers in Cyclic Order Using Call by Reference +62. C++ Program to Find Largest Number Using Dynamic Memory Allocation +63. C++ Program to Find the Frequency of Characters in a String +64. C++ Program to count the number of vowels, consonants, and so on +65. C++ Program to Remove all Characters in a String Except Alphabet +66. C++ Program to Find the Length of a String +67. C++ Program to Concatenate Two Strings +68. C++ Program to Copy String Without Using `strcpy()` +69. C++ Program to Sort Elements in Lexicographical Order (Dictionary Order) +70. C++ Program to Store Information(name, roll, and marks) of a Student Using Structure +71. C++ Program to Add Two Distances (in inch-feet) System Using Structures +72. C++ Program to Add Two Complex Numbers by Passing Structure to a Function +73. C++ Program to Calculate Difference Between Two Time Periods +74. C++ Program to Store Information of Students Using Structure +75. C++ Program to Store Information Using Structures with Dynamically Memory Allocation +76. C++ Program to Write a Sentence to a File +77. C++ Program to Read a Line From a File and Display it +78. C++ Program to Display its own Source Code as Output +79. C++ Programming Code To Create Pyramid and Pattern + ## Projects Ideas -``` 1. Banking system with all banking facilities like – deposit, withdrawal, foreign exchange to any currency, availability of loans for purchasing vehicles, apartments, houses, setting up business, education loan, management of ATMs and all other features. -2. Airline flight reservation system (online booking of tickets in different flights for different destinations all over the world, cancellation of tickets, clear display of cancellation amount, refund of amount after cancellation, showing availability of all flights, showing flights timings for all 7 days of a week, seats availability, seat selection for travelers by giving the complete layout of the seating arrangement inside the flights, food availability/non-availability inside the flights, change of travel dates and amount charged.) +2. Airline flight reservation system (online booking of tickets on different flights for different destinations all over the world, cancellation of tickets, clear display of cancellation amount, refund of amount after cancellation, showing availability of all flights, showing flights timings for all 7 days of a week, seats availability, seat selection for travelers by giving the complete layout of the seating arrangement inside the flights, food availability/non-availability inside the flights, change of travel dates and amount charged.) 3. Taxi/cab sharing -4. University education portal (providing all information about under-graduate, post graduate and doctoral programs offered, facilities available, location & map, fee structure in all the universities) -5. Online exam management system (with total security of identifying the students during exam, monitoring the students’ activities during the exam, selection of different questions for each student, development of a large question bank containing hundreds of questions in each subject considering all courses taught at the university) +4. University education portal (providing all information about undergraduate, postgraduate and doctoral programs offered, facilities available, location & map, and fee structure in all the universities) +5. Online exam management system (with total security of identifying the students during exam, monitoring the student's activities during the exam, selection of different questions for each student, development of a large question bank containing hundreds of questions in each subject considering all courses taught at the university) 6. Library management system 7. E-content management system 8. Plagiarism checker & file management system 9. Hotel reservation & management portal 10. Restaurant management -11. Healthcare consulting system (doctors with different specializations for consultation, hospitals with all facilities for treating different diseases & abroad - one stop portal for all consultations and treatments) -12. Electronic health record management system with builtin security +11. Healthcare consulting system (doctors with different specializations for consultation, hospitals with all facilities for treating different diseases & abroad - one-stop portal for all consultations and treatments) +12. Electronic health record management system with built-in security 13. Pharmacy - medical store management 14. Blood bank system -15. Online shopping and delivery system (like amazon) +15. Online shopping and delivery system (like Amazon) 16. Online car shopping 17. Tourism portal 18. World tourism portal @@ -152,20 +230,20 @@ 28. City traffic monitoring and control system 29. Police traffic violation reporting & control system 30. The marriage function hall booking & food/music arrangement system -31. Any vehicle (car, bus, heavy vehicles for parties, functions, family picnics, long distance travel) booking portal -32. Teacher assisted program writing environment for students +31. Any vehicle (car, bus, heavy vehicles for parties, functions, family picnics, long-distance travel) booking portal +32. Teacher-assisted program writing environment for students 33. Doctors reservation system for patients 34. Bus reservation & tracking system 35. Railway booking and train tracking system 36. Warehouse management system -37. Courier tracking, cargo and freight transportation +37. Courier tracking, cargo, and freight transportation 38. Online code testing system 39. Online quiz system (with total security of identifying the students during the quiz, monitoring the students’ activities during the quiz, selection of different quiz questions for each student, development of a large quiz question bank containing hundreds of quiz questions in each subject considering all courses taught at the university) 40. Land/house/apartment rental & purchase portal 41. Housecleaning, plumbing, electricity service & maintenance system 42. Human organ transplantation management system 43. Covid-19 tracking, testing, treatment & hospital management system -44. Cryptocurrency trading portal (exchange) allowing trading of all crypto coins using security, confidentiality and authentication +44. Cryptocurrency trading portal (exchange) allowing trading of all crypto coins using security, confidentiality, and authentication 45. Parking management system -46. Online food delivery system (linked to all restaurants in different districts in different regions in some country) -``` +46. Online food delivery system (linked to all restaurants in different districts in different regions in some countries) + From 884d2a5038ac8faf94a94aeb97c07fd9b5a4383a Mon Sep 17 00:00:00 2001 From: Rustam Zokirov <59933997+Rustam-Z@users.noreply.github.com> Date: Thu, 23 Nov 2023 23:40:52 +0500 Subject: [PATCH 2/9] Update README.md --- README.md | 162 ++++++++++++++++++++++++++++++++++++++---------------- 1 file changed, 114 insertions(+), 48 deletions(-) diff --git a/README.md b/README.md index f40e8de..eb06fef 100644 --- a/README.md +++ b/README.md @@ -80,18 +80,18 @@ - Write a simple chatbot program using nested conditions. 24. Switch - Program to use `switch` statement. Display Monday to Sunday. - - Program to display arithmetic operator using switch case -25. C++ Program to Swap Two Numbers -26. C++ Program to Find all Roots of a Quadratic equation -27. C++ Program to Check Whether a Character is an Alphabet or not -28. C++ Program to Calculate the Sum of Natural Numbers + - Program to display arithmetic operator using switch case. +25. C++ Program to Swap Two Numbers. +26. C++ Program to Find all Roots of a Quadratic equation. +27. C++ Program to Check Whether a Character is an Alphabet or not. +28. C++ Program to Calculate the Sum of Natural Numbers. 29. Program to calculate the sum of numbers from m to n. - Hint: Input two numbers m and n. Find the sum of all numbers from m to n. For example m=3 and n=8 then sum will be 3 + 4 + 5 + 6 + 7 + 8 = 33. 30. Program to print Fibonacci series up to 100. - - Hint: Fibonacci Series is 1, 1, 2, 3, 5, 8, 13, 21,... -31. C++ program to print Even numbers up to 100 + - Hint: Fibonacci Series is 1, 1, 2, 3, 5, 8, 13, 21, ... +31. C++ program to print Even numbers up to 100. 32. C++ program to Generate a Multiplication Table. -33. C++ program to Calculate the Power of a Number +33. C++ program to Calculate the Power of a Number. 34. **Factorial Calculator:** Write a program that calculates the factorial of a given positive integer. Factorial of a number is the product of all positive integers from 1 to that number. 35. **Prime Number Checker:** Create a program that determines whether a given number is prime or not. A prime number is a positive integer greater than 1 that has no positive divisors other than 1 and itself. 36. C++ Program to Display Prime Numbers Between Two Intervals. @@ -143,20 +143,20 @@ 44. Program to display the series and find the sum of 1 + 3 + 5 + ... + n. 45. Program to display the sum of the series 1 + 1/2 + 1/3 + ... + 1/n. 46. Write a program to add the first seven terms of the following series using a for loop: 1/1! + 2/2! + 3/3! + ... -47. C++ Program to Find GCD of Two Numbers -48. C++ Program to Find LCM of Two Numbers -49. C++ Program to Display Characters from A to Z Using Loop -50. C++ Program to Count Number of Digits in an Integer -51. C++ Program to Reverse a Number -52. C++ Program to Calculate the Power of a Number -54. C++ Program to Check Whether a Number is Palindrome or Not -54. C++ Program to Check Armstrong Number -55. C++ Program to Display Armstrong Number Between Two Intervals -56. C++ Program to Convert Binary Number to Decimal and vice-versa -57. C++ Program to Convert Octal Number to Decimal and vice-versa -58. C++ Program to Convert Binary Numbers to Octal and vice-versa -59. C++ Program to Reverse a Sentence Using Recursion -50. C++ Program to calculate the power using recursion +47. C++ Program to Find GCD of Two Numbers. +48. C++ Program to Find LCM of Two Numbers. +49. C++ Program to Display Characters from A to Z Using Loop. +50. C++ Program to Count Number of Digits in an Integer. +51. C++ Program to Reverse a Number. +52. C++ Program to Calculate the Power of a Number. +54. C++ Program to Check Whether a Number is Palindrome or Not. +54. C++ Program to Check Armstrong Number. +55. C++ Program to Display Armstrong Number Between Two Intervals. +56. C++ Program to Convert Binary Number to Decimal and vice-versa. +57. C++ Program to Convert Octal Number to Decimal and vice-versa. +58. C++ Program to Convert Binary Numbers to Octal and vice-versa. +59. C++ Program to Reverse a Sentence Using Recursion. +50. C++ Program to calculate the power using recursion. 51. Write a program to calculate the area of a circle using functions. 52. Simple Calculator Program: ****Create a program that acts as a basic calculator, allowing users to perform addition, subtraction, multiplication, and division. Use functions for each operation. 53. Write a program to swap two values using functions. @@ -166,44 +166,110 @@ 57. Employee Payroll: ****Design a program that calculates employee payroll, including basic salary, overtime pay, and deductions. Use functions to compute each component. 58. **Student Grade Tracker:** Create a program that allows teachers to enter student grades and calculate averages, find the highest and lowest scores, and display statistics. 59. **Library Management System:** Create a simple library management system where you can store and manage a list of books using arrays. Ask the user to enter the book names. You should have the function display the book names. Create a `void` function. You should have the functionality to update the book name. To do this create another function. And pass index as argument. -60. C++ Program to merge two arrays +60. C++ Program to merge two arrays. 61. C++ Program to search the value in the array and return its index, if the value is not found print “Item not found”. 62. ****Number Sorting:** Write a program that reads a list of numbers into an array and sorts them in ascending or descending order using a sorting algorithm. 63. **Matrix Operations:** Write a program for basic matrix operations, such as addition, subtraction, multiplication, and transposition. 64. In a small company, there are five salesmen. Each salesman is supposed to sell three products. Write a program using a 2D array to print **(Input from user)**. The total sales by each salesman and Total sales of each item. -65. C++ Program to Calculate Standard Deviation -66. C++ Program to Multiply two Matrices by Passing Matrix to a Function -67. C++ Program to Access Elements of an Array Using Pointer +65. C++ Program to Calculate Standard Deviation. +66. C++ Program to Multiply Two Matrices by Passing the Matrix to a Function. +67. C++ Program to Access Elements of an Array Using Pointer. 68. Write a program that declares an integer variable, assigns a value to it, and then uses a pointer to print the value. 69. Swap the values of two integer variables using pointers. 70. Write a program that finds the sum of elements in an integer array using a pointer. 71. Create a dynamic integer array and prompt the user for the array size. Fill the array with user input values. -72. C++ Program Swap Numbers in Cyclic Order Using Call by Reference -62. C++ Program to Find Largest Number Using Dynamic Memory Allocation -63. C++ Program to Find the Frequency of Characters in a String -64. C++ Program to count the number of vowels, consonants, and so on -65. C++ Program to Remove all Characters in a String Except Alphabet -66. C++ Program to Find the Length of a String -67. C++ Program to Concatenate Two Strings -68. C++ Program to Copy String Without Using `strcpy()` -69. C++ Program to Sort Elements in Lexicographical Order (Dictionary Order) -70. C++ Program to Store Information(name, roll, and marks) of a Student Using Structure -71. C++ Program to Add Two Distances (in inch-feet) System Using Structures -72. C++ Program to Add Two Complex Numbers by Passing Structure to a Function -73. C++ Program to Calculate Difference Between Two Time Periods -74. C++ Program to Store Information of Students Using Structure -75. C++ Program to Store Information Using Structures with Dynamically Memory Allocation -76. C++ Program to Write a Sentence to a File -77. C++ Program to Read a Line From a File and Display it -78. C++ Program to Display its own Source Code as Output -79. C++ Programming Code To Create Pyramid and Pattern +72. C++ Program Swap Numbers in Cyclic Order Using Call by Reference. +62. C++ Program to Find Largest Number Using Dynamic Memory Allocation. +63. C++ Program to Find the Frequency of Characters in a String. +64. C++ Program to count the number of vowels, consonants, and so on. +65. C++ Program to Remove all Characters in a String Except Alphabet. +66. C++ Program to Find the Length of a String. +67. C++ Program to Concatenate Two Strings. +68. C++ Program to Copy String Without Using `strcpy()`. +69. C++ Program to Sort Elements in Lexicographical Order (Dictionary Order). +70. C++ Program to Store Information(name, roll, and marks) of a Student Using Structure. +71. C++ Program to Add Two Distances (in inch-feet) System Using Structures. +72. C++ Program to Add Two Complex Numbers by Passing Structure to a Function. +73. C++ Program to Calculate Difference Between Two Time Periods. +74. C++ Program to Store Information of Students Using Structure. +75. C++ Program to Store Information Using Structures with Dynamically Memory Allocation. +76. C++ Program to Write a Sentence to a File. +77. C++ Program to Read a Line From a File and Display it. +78. C++ Program to Display its own Source Code as Output. +79. C++ Programming Code To Create Pyramid and Pattern. +80. [OOP] Define a class called **`Car`** with attributes like **`model`**, and **`year`**. Create an object of the **`Car`** class and set its attributes. Then, print out the car's details. +81. [OOP] Redo the same program above using `this->` +82. [OOP] Temperature converter. Write a class called **`TemperatureConverter`** with methods to convert between Celsius and Fahrenheit. From Celsius Kelvin. to Create an object of this class, and use it to convert a temperature from one scale to another. +83. [OOP] Simple calculator. Create a class called **`Calculator`** that can perform basic arithmetic operations (addition, subtraction, multiplication, division). Create an object of the class and use it to perform some calculations. +84. [OOP] Create a class **`Rectangle`** with attributes for its length and width. Implement a method to calculate the area of the rectangle. Create an object and compute the area for a specific rectangle. +85. [OOP] Simple To-Do List: Design a basic to-do list application where users can add, remove, and display tasks. You can save tasks in an array. +86. [OOP] Define a class student with the following specifications. + ```cpp + Student + --- + + Student_ID: String + + Student_Name: String + + OOP2_Score: double + + Maths_Score: double + + English_Score: double + + Total_Score: double + --- + + ctotal(): Function to calculate eng + math + OOP-2 with double return type. + + Takedata(): Function to accept values for student id, Student Name, eng, OOP-2, maths and invoke ctotal() to calculate total. + + Showdata(): Function to display all the data members on the screen. + ``` +87. [OOP] The class Person with private attributes name(string) and age(int). + + The class contains three functions. + + - One with no parameter (for initializing default value). + - With two parameters (one parameter with default value). + - Function to display the data. + + ```cpp + Person + --- + + Name: String + + Age: int + --- + + Display() + + Person() + + Person(a: int) + ``` +88. [OOP] Inheritance: https://github.com/Rustam-Z/cpp-programming/tree/main/OOP2_Lab6 +89. [OOP] Encapsulation: https://github.com/Rustam-Z/cpp-programming/tree/main/OOP2_Lab7 + + Write a C++ menu-driven program to get employee details, display employee details, and display monthly salary details of employees.**** + ```cpp + Employee + --- + - Employee_ID: String + - Employee_Name: String + - No_of_Hours_Work: int + - Rate_per_Hour: int + --- + + setEmployee_ID(String) + + getEmployee_ID(): String + + setEmployee_Name(String) + + getEmployee_Name(): String + + setNo_of_Hours_Work(int) + + getNo_of_Hours_Work(): int + + setRate_per_Hour(int) + + getRate_per_Hour(): int + + getTotal_Monthly_Salary(): double + ``` +91. [OOP] Polymorphism: https://github.com/Rustam-Z/cpp-programming/tree/main/OOP2_Lab8 + +**More questions can be found in the LAB folders above.** + + ## Projects Ideas -1. Banking system with all banking facilities like – deposit, withdrawal, foreign exchange to any currency, availability of loans for purchasing vehicles, apartments, houses, setting up business, education loan, management of ATMs and all other features. -2. Airline flight reservation system (online booking of tickets on different flights for different destinations all over the world, cancellation of tickets, clear display of cancellation amount, refund of amount after cancellation, showing availability of all flights, showing flights timings for all 7 days of a week, seats availability, seat selection for travelers by giving the complete layout of the seating arrangement inside the flights, food availability/non-availability inside the flights, change of travel dates and amount charged.) +1. Banking system with all banking facilities like – deposit, withdrawal, foreign exchange to any currency, availability of loans for purchasing vehicles, apartments, houses, setting up business, education loan, management of ATMs, and all other features. +2. Airline flight reservation system (online booking of tickets on different flights for different destinations all over the world, cancellation of tickets, clear display of cancellation amount, refund of the amount after cancellation, showing availability of all flights, showing flights timings for all 7 days of a week, seats availability, seat selection for travelers by giving the complete layout of the seating arrangement inside the flights, food availability/non-availability inside the flights, change of travel dates and the amount charged.) 3. Taxi/cab sharing -4. University education portal (providing all information about undergraduate, postgraduate and doctoral programs offered, facilities available, location & map, and fee structure in all the universities) +4. University education portal (providing all information about undergraduate, postgraduate, and doctoral programs offered, facilities available, location & map, and fee structure in all the universities) 5. Online exam management system (with total security of identifying the students during exam, monitoring the student's activities during the exam, selection of different questions for each student, development of a large question bank containing hundreds of questions in each subject considering all courses taught at the university) 6. Library management system 7. E-content management system From 78cbe1a169446431112b2a15a39ef04953a5c7eb Mon Sep 17 00:00:00 2001 From: Rustam Zokirov <59933997+Rustam-Z@users.noreply.github.com> Date: Thu, 23 Nov 2023 23:41:41 +0500 Subject: [PATCH 3/9] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index eb06fef..10b48e7 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ 8. Learn to ask GOOD questions to others: - G: Give context on what you are trying to do, clearly describing the problem. - O: Outline the things you have already tried to fix the issue. - - O: Offer your best guess as to what the problem might be. It helps the person who is helping you not only know what you're thinking, but also know that you've thought of something yourself. + - O: Offer your best guess as to what the problem might be. It helps the person who is helping you not only know what you're thinking but also know that you've thought of something yourself. - D: Demonstrate what's going on. Include the code, the tracing error message, and an explanation of the steps you followed that resulted in the error. That way, the person helping doesn't have to try to recreate the problem. ``` @@ -46,7 +46,7 @@ - [learncpp.com](https://www.learncpp.com/) ## Problem Solving -1. 1. C++ Program to print "Hello, World!". +1. C++ Program to print "Hello, World!". 2. C++ Program to print an integer entered by the user. 3. C++ Program to Add/Subtract/Multiply/Divide Two Integers. 4. C++ Program to Add/Subtract/Multiply/Divide Two Integers entered by the user. @@ -216,7 +216,7 @@ + Total_Score: double --- + ctotal(): Function to calculate eng + math + OOP-2 with double return type. - + Takedata(): Function to accept values for student id, Student Name, eng, OOP-2, maths and invoke ctotal() to calculate total. + + Takedata(): Function to accept values for student ID, Student Name, eng, OOP-2, maths and invoke ctotal() to calculate total. + Showdata(): Function to display all the data members on the screen. ``` 87. [OOP] The class Person with private attributes name(string) and age(int). From 537ac763b171a951623f98f7e661e32aa1bb1451 Mon Sep 17 00:00:00 2001 From: Rustam Zokirov Date: Sat, 11 May 2024 16:34:29 +0500 Subject: [PATCH 4/9] Update README.md --- README.md | 40 +++++++++++++++++++++++++++++++--------- 1 file changed, 31 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 10b48e7..d91988a 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,6 @@ - [Problem Solving](#problem-solving) - [Projects Ideas](#projects-ideas) - ## Keep These Tips in Mind While Learning Programming ``` 1. Learn and code every day, consistency is important. @@ -16,7 +15,7 @@ 3. Learn to debug your code - look at the code line by line to see how it works. 4. Surround yourself with other people who are learning. Teach each other. 5. Learn taking notes. -6. Build something, anything. For example, simple calculator, or program to save and read data from TXT files. +6. Build something, anything you would enjoy while coding. Be unique. 7. Focus on 1 thing! Take small steps, but every day, consistency is very important again. 8. Learn to ask GOOD questions to others: - G: Give context on what you are trying to do, clearly describing the problem. @@ -25,17 +24,18 @@ - D: Demonstrate what's going on. Include the code, the tracing error message, and an explanation of the steps you followed that resulted in the error. That way, the person helping doesn't have to try to recreate the problem. ``` - ## Computer Science Basics - [Harvard CS50](https://youtube.com/playlist?list=PLhQjrBD2T383f9scHRNYJkior2VvYjpSL) - Scratch, C, Arrays, Algorithms, Memory, Data structures, Python, SQL, HTML, CSS, JavaScript, Flask -- `Optional` [Crash Course Computer Science](https://www.youtube.com/playlist?list=PL8dPuuaLjXtNlUrzyH5r6jN9ulIgZBpdo) +- [Crash Course Computer Science](https://www.youtube.com/playlist?list=PL8dPuuaLjXtNlUrzyH5r6jN9ulIgZBpdo) - [Computer Science for Everyone](https://www.youtube.com/playlist?list=PLrC-HcVNfULbGKkhJSgfqvqmaFAZvfHes) +- [Book "Everything You Need to Ace Computer Science ..."](https://www.amazon.com/Everything-Computer-Science-Coding-Notebook/dp/1523502770) + ## Learning Resources -- EN [C++ for beginners — CodeBeauty](https://www.youtube.com/playlist?list=PL43pGnjiVwgQHLPnuH9ch-LhZdwckM8Tq) -- EN [C++ Programming Tutorial — thenewboston](https://www.youtube.com/playlist?list=PLAE85DE8440AA6B83) -- EN [C++ by The Cherno](https://www.youtube.com/watch?v=18c3MTX0PK0&list=PLlrATfBNZ98dudnM48yfGUldqGD0S4FFb) -- EN [C++ by freeCodeCamp.org](https://www.youtube.com/watch?v=vLnPwxZdW4Y) +- [C++ for beginners — CodeBeauty](https://www.youtube.com/playlist?list=PL43pGnjiVwgQHLPnuH9ch-LhZdwckM8Tq) +- [C++ Programming Tutorial — thenewboston](https://www.youtube.com/playlist?list=PLAE85DE8440AA6B83) +- [C++ by The Cherno](https://www.youtube.com/watch?v=18c3MTX0PK0&list=PLlrATfBNZ98dudnM48yfGUldqGD0S4FFb) +- [C++ by freeCodeCamp.org](https://www.youtube.com/watch?v=vLnPwxZdW4Y) - RU [C++ by Denis Markov](https://www.youtube.com/playlist?list=PLbmlzoDQrXVFC13GjpPrJxl6mzTiX65gs) - RU [C++ Уроки - Гоша Дударь](https://www.youtube.com/watch?v=qSHP98i9mDU&list=PL0lO_mIqDDFXNfqIL9PHQM7Wg_kOtDZsW) - To read: @@ -78,6 +78,17 @@ 23. Nested condition - Get the `age` and `membership_status` as user input. `membership_status` can be only `Y` or `y`. So, if the age is bigger or equal to 18 and if the user is a member of our shop, we provide a 10% discount, else we charge fully. - Write a simple chatbot program using nested conditions. +24. Write a program to calculate taxes, with the following conditions: + - If the salary is less than $1500, then there are no taxes + - If the salary is from 1501 to 3000 $ (1501<= salary < 3000) then the tax should be 10% + - If the salary is from 3001 to 5000 $ (3001 <= salary < 5000) then the tax should be 20% + - If the salary is above $5000, then the tax should be 30% + + **Hint: Formula for finding tax (salary * percentage) / 100** + + You must output: + - Tax percentage + - Salary after taxes 24. Switch - Program to use `switch` statement. Display Monday to Sunday. - Program to display arithmetic operator using switch case. @@ -268,7 +279,7 @@ ## Projects Ideas 1. Banking system with all banking facilities like – deposit, withdrawal, foreign exchange to any currency, availability of loans for purchasing vehicles, apartments, houses, setting up business, education loan, management of ATMs, and all other features. 2. Airline flight reservation system (online booking of tickets on different flights for different destinations all over the world, cancellation of tickets, clear display of cancellation amount, refund of the amount after cancellation, showing availability of all flights, showing flights timings for all 7 days of a week, seats availability, seat selection for travelers by giving the complete layout of the seating arrangement inside the flights, food availability/non-availability inside the flights, change of travel dates and the amount charged.) -3. Taxi/cab sharing +3. Taxi/cab sharing app 4. University education portal (providing all information about undergraduate, postgraduate, and doctoral programs offered, facilities available, location & map, and fee structure in all the universities) 5. Online exam management system (with total security of identifying the students during exam, monitoring the student's activities during the exam, selection of different questions for each student, development of a large question bank containing hundreds of questions in each subject considering all courses taught at the university) 6. Library management system @@ -312,4 +323,15 @@ 44. Cryptocurrency trading portal (exchange) allowing trading of all crypto coins using security, confidentiality, and authentication 45. Parking management system 46. Online food delivery system (linked to all restaurants in different districts in different regions in some countries) +47. *Food ordering system | Get order → print cheque as PDF file → see order status on separate HTML page. +48. *Weather app that recommends what to wear as a telegram bot. +49. *QR code generator, as a CLI tool, as a telegram bot. +50. *Remainder application (crontab tool) as a telegram bot, as a CLI application. +51. *Build own URL shortener as a telegram bot, as a CLI application, web app. +52. Math library with functions as a library. +53. Lost and found as a web app. + +## More Project Ideas +- https://codingchallenges.fyi/challenges/challenge-redis-cli +- https://github.com/codecrafters-io/build-your-own-x From fcfae03b512c6a07564d8bd0e5d902fdacc08fe6 Mon Sep 17 00:00:00 2001 From: Rustam Zokirov Date: Sun, 12 May 2024 13:37:02 +0500 Subject: [PATCH 5/9] Update Lab 01 --- Lab_01/01_hello_world.cpp | 13 ++++++++++++ Lab_01/02_take_user_input.cpp | 16 +++++++++++++++ Lab_01/03_integer_operations.cpp | 19 ++++++++++++++++++ Lab_01/04_integer_operations_v2.cpp | 19 ++++++++++++++++++ Lab_01/06_division.cpp | 20 +++++++++++++++++++ OOP1-Lab1/Circle.cpp => Lab_01/07_circle.cpp | 11 +++++----- .../08_scalene_triangle.cpp | 17 +++++++--------- .../09_equilateral_triangle.cpp | 11 +++++----- .../10_right_triangle.cpp | 11 +++++----- .../Rectangle.cpp => Lab_01/11_rectangle.cpp | 11 +++++----- OOP1-Lab1/Square.cpp => Lab_01/12_square.cpp | 11 +++++----- Lab_01/README.md | 14 +++++++++++++ OOP1-Lab1/README.md | 8 -------- 13 files changed, 133 insertions(+), 48 deletions(-) create mode 100644 Lab_01/01_hello_world.cpp create mode 100644 Lab_01/02_take_user_input.cpp create mode 100644 Lab_01/03_integer_operations.cpp create mode 100644 Lab_01/04_integer_operations_v2.cpp create mode 100644 Lab_01/06_division.cpp rename OOP1-Lab1/Circle.cpp => Lab_01/07_circle.cpp (83%) rename OOP1-Lab1/ScaleneTriangle.cpp => Lab_01/08_scalene_triangle.cpp (81%) rename OOP1-Lab1/EquilateralTriangle.cpp => Lab_01/09_equilateral_triangle.cpp (81%) rename OOP1-Lab1/RightTriangle.cpp => Lab_01/10_right_triangle.cpp (82%) rename OOP1-Lab1/Rectangle.cpp => Lab_01/11_rectangle.cpp (82%) rename OOP1-Lab1/Square.cpp => Lab_01/12_square.cpp (80%) create mode 100644 Lab_01/README.md delete mode 100644 OOP1-Lab1/README.md diff --git a/Lab_01/01_hello_world.cpp b/Lab_01/01_hello_world.cpp new file mode 100644 index 0000000..c5747c4 --- /dev/null +++ b/Lab_01/01_hello_world.cpp @@ -0,0 +1,13 @@ +// Program to print text on the console. +// cout -> console output. + +#include + +using namespace std; + +int main() +{ + cout << "Hello, World!" << endl; + system("pause"); + return 0; +} \ No newline at end of file diff --git a/Lab_01/02_take_user_input.cpp b/Lab_01/02_take_user_input.cpp new file mode 100644 index 0000000..cefb170 --- /dev/null +++ b/Lab_01/02_take_user_input.cpp @@ -0,0 +1,16 @@ +// Program to print an integer entered by the user. +// cin -> console input. + +#include + +using namespace std; + +int main() +{ + int number; + cout << "Enter an integer: "; + cin >> number; + cout << "You entered: " << number << endl; + system("pause"); + return 0; +} \ No newline at end of file diff --git a/Lab_01/03_integer_operations.cpp b/Lab_01/03_integer_operations.cpp new file mode 100644 index 0000000..532c3f5 --- /dev/null +++ b/Lab_01/03_integer_operations.cpp @@ -0,0 +1,19 @@ +// Program to Add/Subtract/Multiply/Divide Two Integers. + +#include + +using namespace std; + +int main() +{ + int num1, num2; + cout << "Enter two integers: "; + cin >> num1 >> num2; + cout << "Sum: " << num1 + num2 << endl; + cout << "Difference: " << num1 - num2 << endl; + cout << "Product: " << num1 * num2 << endl; + cout << "Quotient: " << num1 / num2 << endl; + cout << "Remainder: " << num1 % num2 << endl; + system("pause"); + return 0; +} \ No newline at end of file diff --git a/Lab_01/04_integer_operations_v2.cpp b/Lab_01/04_integer_operations_v2.cpp new file mode 100644 index 0000000..27ab1c9 --- /dev/null +++ b/Lab_01/04_integer_operations_v2.cpp @@ -0,0 +1,19 @@ +// C++ Program to Add/Subtract/Multiply/Divide Two Integers entered by the user. + +#include + +using namespace std; + +int main() +{ + int num1, num2; + cout << "Enter two integers: "; + cin >> num1 >> num2; + cout << "Sum: " << num1 + num2 << endl; + cout << "Difference: " << num1 - num2 << endl; + cout << "Product: " << num1 * num2 << endl; + cout << "Quotient: " << num1 / num2 << endl; + cout << "Remainder: " << num1 % num2 << endl; + system("pause"); + return 0; +} \ No newline at end of file diff --git a/Lab_01/06_division.cpp b/Lab_01/06_division.cpp new file mode 100644 index 0000000..7ddd330 --- /dev/null +++ b/Lab_01/06_division.cpp @@ -0,0 +1,20 @@ +// C++ Program to Compute Quotient and Remainder. + +#include + +using namespace std; + +int main() +{ + int dividend, divisor, quotient, remainder; + cout << "Enter dividend: "; + cin >> dividend; + cout << "Enter divisor: "; + cin >> divisor; + quotient = dividend / divisor; + remainder = dividend % divisor; + cout << "Quotient = " << quotient << endl; + cout << "Remainder = " << remainder << endl; + system("pause"); + return 0; +} \ No newline at end of file diff --git a/OOP1-Lab1/Circle.cpp b/Lab_01/07_circle.cpp similarity index 83% rename from OOP1-Lab1/Circle.cpp rename to Lab_01/07_circle.cpp index 6d3c314..5d68352 100644 --- a/OOP1-Lab1/Circle.cpp +++ b/Lab_01/07_circle.cpp @@ -1,5 +1,4 @@ -// Rustam Zokirov -// C++ program to Calculate Area and Circumference of Circle +// C++ program to Calculate Area and Circumference of Circle. #include @@ -11,17 +10,17 @@ int main() float R, Area, Circumference; cout << "Please enter the Radius of Circle: "; cin >> R; - if (R > 0) - { + + if (R > 0) { Area = 3.14 * R * R; Circumference = 2 * 3.14 * R; cout << "Area of Circle is " << Area << ";" << endl; cout << "Circumference of Circle is " << Circumference << ";" << endl; } - else - { + else { cout << "Negative numbers cannot be applied !!!" << endl; } + system("pause"); return 0; } \ No newline at end of file diff --git a/OOP1-Lab1/ScaleneTriangle.cpp b/Lab_01/08_scalene_triangle.cpp similarity index 81% rename from OOP1-Lab1/ScaleneTriangle.cpp rename to Lab_01/08_scalene_triangle.cpp index a0c55d0..fe69dd8 100644 --- a/OOP1-Lab1/ScaleneTriangle.cpp +++ b/Lab_01/08_scalene_triangle.cpp @@ -1,5 +1,4 @@ -// Rustam Zokirov -// C++ program to Calculate Area of Scalene Triangle +// C++ program to Calculate Area of Scalene Triangle. #include #include @@ -16,25 +15,23 @@ int main() cin >> b; cout << "Please enter the values for the third side of Triangle: "; cin >> c; - if (a > 0 && b > 0 && c > 0) - { - if (c < a + b && a < b + c && b < a + c) - { + + if (a > 0 && b > 0 && c > 0) { + if (c < a + b && a < b + c && b < a + c) { S = (a + b + c) / 2; Area = sqrt(S * (S - a) * (S - b) * (S - c)); cout << "The Area of Triangle is " << Area << endl; return 0; } - else - { + else { cout << "This triangle is wrong try another values." << endl; return 0; } } - else - { + else { cout << "The sides of Triangle cannot be negative numbers!" << endl; } + system("pause"); return 0; } \ No newline at end of file diff --git a/OOP1-Lab1/EquilateralTriangle.cpp b/Lab_01/09_equilateral_triangle.cpp similarity index 81% rename from OOP1-Lab1/EquilateralTriangle.cpp rename to Lab_01/09_equilateral_triangle.cpp index 8cd3c4f..a97069f 100644 --- a/OOP1-Lab1/EquilateralTriangle.cpp +++ b/Lab_01/09_equilateral_triangle.cpp @@ -1,5 +1,4 @@ -// Rustam Zokirov -// C++ program to Calculate Area of Equilateral Triangle +// C++ program to Calculate Area of Equilateral Triangle. #include #include @@ -12,15 +11,15 @@ int main() float a, Area; cout << "Please enter the value for the side of Triangle: "; cin >> a; - if (a > 0) - { + + if (a > 0) { Area = sqrt(2) * a * a * 0.25; cout << "The Area of this triangle is " << Area << ";" << endl; } - else - { + else { cout << "The sides of Triangle cannot be negative numbers ! " << endl; } + system("pause"); return 0; } \ No newline at end of file diff --git a/OOP1-Lab1/RightTriangle.cpp b/Lab_01/10_right_triangle.cpp similarity index 82% rename from OOP1-Lab1/RightTriangle.cpp rename to Lab_01/10_right_triangle.cpp index 2ad2459..4bde450 100644 --- a/OOP1-Lab1/RightTriangle.cpp +++ b/Lab_01/10_right_triangle.cpp @@ -1,5 +1,4 @@ -// Rustam Zokirov -// C++ program to Calculate Area of Right angle Triangle +// C++ program to Calculate Area of Right angle Triangle. #include @@ -13,15 +12,15 @@ int main() cin >> a; cout << "Please enter the value for the second cathet of Triangle: "; cin >> b; - if (a > 0 && b > 0) - { + + if (a > 0 && b > 0) { Area = b * a * 0.5; cout << "The Area of this Triangle is " << Area << ";" << endl; } - else - { + else { cout << "The sides of Triangle cannot be negative numbers ! " << endl; } + system("pause"); return 0; } \ No newline at end of file diff --git a/OOP1-Lab1/Rectangle.cpp b/Lab_01/11_rectangle.cpp similarity index 82% rename from OOP1-Lab1/Rectangle.cpp rename to Lab_01/11_rectangle.cpp index fae1e1b..cbae086 100644 --- a/OOP1-Lab1/Rectangle.cpp +++ b/Lab_01/11_rectangle.cpp @@ -1,5 +1,4 @@ -// Rustam Zokirov -// C++ program to Calculate Area of Rectangle +// C++ program to Calculate Area of Rectangle. #include #include @@ -14,15 +13,15 @@ int main() cin >> a; cout << "Please enter the width of Rectangle: "; cin >> b; - if (a > 0 && b > 0) - { + + if (a > 0 && b > 0) { Area = a * b; cout << "The area of Rectangle is " << Area << ";" << endl; } - else - { + else { cout << "The sides of Rectangle cannot be negative numbers !" << endl; } + system("pause"); return 0; } \ No newline at end of file diff --git a/OOP1-Lab1/Square.cpp b/Lab_01/12_square.cpp similarity index 80% rename from OOP1-Lab1/Square.cpp rename to Lab_01/12_square.cpp index 05012d9..462319f 100644 --- a/OOP1-Lab1/Square.cpp +++ b/Lab_01/12_square.cpp @@ -1,5 +1,4 @@ -// U1910049 Rustam Zokirov -// C++ program to Calculate Area of Square +// C++ program to Calculate Area of Square. #include #include @@ -12,15 +11,15 @@ int main() float a, Area; cout << "Please enter the value for the side of Square: "; cin >> a; - if (a > 0) - { + + if (a > 0) { Area = a * a; cout << "The area of Square is " << Area << ";" << endl; } - else - { + else { cout << "Negetive numbers cannot be applied !!!" << endl; } + system("pause"); return 0; } \ No newline at end of file diff --git a/Lab_01/README.md b/Lab_01/README.md new file mode 100644 index 0000000..66f0161 --- /dev/null +++ b/Lab_01/README.md @@ -0,0 +1,14 @@ +# Practical Lab Assignment - Variables/Operators + +1. C++ Program to print "Hello, World!". +2. C++ Program to print an integer entered by the user. +3. C++ Program to Add/Subtract/Multiply/Divide Two Integers. +4. C++ Program to Add/Subtract/Multiply/Divide Two Integers entered by the user. +5. C++ Program to Add/Subtract/Multiply/Divide two Floating Point Numbers. +6. C++ Program to Compute Quotient and Remainder. +7. C++ Program to Calculate the Area and Circumference of a Circle. +8. C++ Program to Calculate the Area of a Scalene Triangle. +9. C++ Program to Calculate the Area of an Equilateral Triangle. +10. C++ Program to Calculate the Area of Right Angle Triangle. +11. C++ Program to Calculate the Area and Perimeter of a Rectangle. +12. C++ Program to Calculate the Area and Perimeter of a Square. diff --git a/OOP1-Lab1/README.md b/OOP1-Lab1/README.md deleted file mode 100644 index a41c617..0000000 --- a/OOP1-Lab1/README.md +++ /dev/null @@ -1,8 +0,0 @@ -# Practical Lab Assignment - Operators - -1. C++ Program to Calculate Area and Circumference of Circle. -2. C++ Program to Calculate Area of Scalene Triangle. -3. C++ Program to Calculate Area of Equilateral Triangle. -4. C++ Program to Calculate Area of Right angle Triangle. -5. C++ Program to Calculate Area of Rectangle. -6. C++ Program to Calculate Area of Square. \ No newline at end of file From e11f9e28c46259804a830bd3e5ffd4b7da55340a Mon Sep 17 00:00:00 2001 From: Rustam Zokirov Date: Mon, 13 May 2024 11:49:29 +0500 Subject: [PATCH 6/9] Update Lab 02 --- .../Swapping.cpp => Lab_01/13_swapping.cpp | 11 +++- Lab_01/README.md | 3 + Lab_02/01_temperature_converter.cpp | 26 ++++++++ .../OddEven.cpp => Lab_02/02_odd_even.cpp | 8 +-- Lab_02/03_negative_positive.cpp | 23 +++++++ Lab_02/04_vowel_consonant.cpp | 22 +++++++ .../05_largest_number.cpp | 9 ++- .../LeapYear.cpp => Lab_02/06_leap_year.cpp | 3 +- Lab_02/README.md | 36 +++++++++++ OOP1-Lab2/README.md | 7 --- OOP1-Lab2/Temperature.cpp | 14 ----- README.md | 60 ++++++++++--------- 12 files changed, 163 insertions(+), 59 deletions(-) rename OOP1-Lab2/Swapping.cpp => Lab_01/13_swapping.cpp (95%) create mode 100644 Lab_02/01_temperature_converter.cpp rename OOP1-Lab2/OddEven.cpp => Lab_02/02_odd_even.cpp (85%) create mode 100644 Lab_02/03_negative_positive.cpp create mode 100644 Lab_02/04_vowel_consonant.cpp rename OOP1-Lab2/Greatestnumber.cpp => Lab_02/05_largest_number.cpp (91%) rename OOP1-Lab2/LeapYear.cpp => Lab_02/06_leap_year.cpp (97%) create mode 100644 Lab_02/README.md delete mode 100644 OOP1-Lab2/README.md delete mode 100644 OOP1-Lab2/Temperature.cpp diff --git a/OOP1-Lab2/Swapping.cpp b/Lab_01/13_swapping.cpp similarity index 95% rename from OOP1-Lab2/Swapping.cpp rename to Lab_01/13_swapping.cpp index c176b59..76cd3fb 100644 --- a/OOP1-Lab2/Swapping.cpp +++ b/Lab_01/13_swapping.cpp @@ -1,19 +1,24 @@ -// Program to show swap of two no's without using third variable +// Program to show swap of two no's without using third variable. + #include using namespace std; -int main() -{ + +int main() { float a, b; + cout << "Enter first number: "; cin >> a; cout << "Enter second number: "; cin >> b; + a = a + b; b = a - b; a = a - b; + cout << "We have swapped your numbers, result in below." << endl; cout << "a = " << a << endl; cout << "b = " << b << endl; + system("pause"); return 0; } \ No newline at end of file diff --git a/Lab_01/README.md b/Lab_01/README.md index 66f0161..db51e23 100644 --- a/Lab_01/README.md +++ b/Lab_01/README.md @@ -12,3 +12,6 @@ 10. C++ Program to Calculate the Area of Right Angle Triangle. 11. C++ Program to Calculate the Area and Perimeter of a Rectangle. 12. C++ Program to Calculate the Area and Perimeter of a Square. +13. C++ Program to Find ASCII Value of a Character. +14. C++ Program to Find the Size of int, float, double, and char. +15. C++ Program to Swap Two Numbers. diff --git a/Lab_02/01_temperature_converter.cpp b/Lab_02/01_temperature_converter.cpp new file mode 100644 index 0000000..76eeda8 --- /dev/null +++ b/Lab_02/01_temperature_converter.cpp @@ -0,0 +1,26 @@ +// C++ program that converts between Celsius and Fahrenheit temperatures based on user input. + +#include + +using namespace std; + +int main() { + float temp; + char unit; + + cout << "Enter the temperature: "; + cin >> temp; + + cout << "Enter the unit (C/F): "; + cin >> unit; + + if (unit == 'C') { + cout << "The temperature in Fahrenheit is " << (temp * 9 / 5) + 32 << "F." << endl; + } else if (unit == 'F') { + cout << "The temperature in Celsius is " << (temp - 32) * 5 / 9 << "C." << endl; + } else { + cout << "Invalid unit." << endl; + } + + return 0; +} \ No newline at end of file diff --git a/OOP1-Lab2/OddEven.cpp b/Lab_02/02_odd_even.cpp similarity index 85% rename from OOP1-Lab2/OddEven.cpp rename to Lab_02/02_odd_even.cpp index 9b17b82..5a04183 100644 --- a/OOP1-Lab2/OddEven.cpp +++ b/Lab_02/02_odd_even.cpp @@ -1,18 +1,18 @@ -// U1910049 -// Lab assignment #3 // Program to find whether given number is even or odd. #include using namespace std; -int main1() -{ + +int main() { int a; cout << "Enter the number: "; cin >> a; + if (a % 2 == 0) cout << "Your number is Even!" << endl; else cout << "Your number is Odd!" << endl; + system("pause"); return 0; } \ No newline at end of file diff --git a/Lab_02/03_negative_positive.cpp b/Lab_02/03_negative_positive.cpp new file mode 100644 index 0000000..0bf9966 --- /dev/null +++ b/Lab_02/03_negative_positive.cpp @@ -0,0 +1,23 @@ +// C++ Program to Check Whether a Number is Positive or Negative. + +#include + +using namespace std; + +int main() { + float number; + + cout << "Enter a number: "; + cin >> number; + + if (number > 0) { + cout << "The number is positive." << endl; + } else if (number < 0) { + cout << "The number is negative." << endl; + } else { + cout << "The number is zero." << endl; + } + + system("pause"); + return 0; +} \ No newline at end of file diff --git a/Lab_02/04_vowel_consonant.cpp b/Lab_02/04_vowel_consonant.cpp new file mode 100644 index 0000000..7c2421e --- /dev/null +++ b/Lab_02/04_vowel_consonant.cpp @@ -0,0 +1,22 @@ +// C++ Program to Check Whether a Character is a Vowel or Consonant. + +#include + +using namespace std; + +int main() { + char c; + + cout << "Enter a character: "; + cin >> c; + + if (c == 'a' || c == 'e' || c == 'i' || c == 'o' || c == 'u' || + c == 'A' || c == 'E' || c == 'I' || c == 'O' || c == 'U') { + cout << "The character is a vowel." << endl; + } else { + cout << "The character is a consonant." << endl; + } + + system("pause"); + return 0; +} \ No newline at end of file diff --git a/OOP1-Lab2/Greatestnumber.cpp b/Lab_02/05_largest_number.cpp similarity index 91% rename from OOP1-Lab2/Greatestnumber.cpp rename to Lab_02/05_largest_number.cpp index 8be4794..9d285a4 100644 --- a/OOP1-Lab2/Greatestnumber.cpp +++ b/Lab_02/05_largest_number.cpp @@ -1,22 +1,25 @@ -// U1910049 -// Lab assignment #3 // Program to find greatest in 3 numbers #include using namespace std; -int main2() + +int main() { float a, b, c; cout << "Enter the 3 numbres: "; cin >> a >> b >> c; + if (a >= b && a >= c) cout << "The greatest number is " << a << ";" << endl; + if (b >= a && b >= c) cout << "The greatest number is " << b << ";" << endl; + if (c >= a && c >= b) cout << "The greatest number is " << c << ";" << endl; else if (a == b == c) cout << "All numbers are equal." << endl; + system("pause"); return 0; } \ No newline at end of file diff --git a/OOP1-Lab2/LeapYear.cpp b/Lab_02/06_leap_year.cpp similarity index 97% rename from OOP1-Lab2/LeapYear.cpp rename to Lab_02/06_leap_year.cpp index d6e41d6..7c2b41e 100644 --- a/OOP1-Lab2/LeapYear.cpp +++ b/Lab_02/06_leap_year.cpp @@ -3,11 +3,12 @@ #include using namespace std; -int main4() +int main() { int year; cout << "Enter a Year: "; cin >> year; + if (year % 4 == 0) { if (year % 100 == 0) diff --git a/Lab_02/README.md b/Lab_02/README.md new file mode 100644 index 0000000..bbcb38b --- /dev/null +++ b/Lab_02/README.md @@ -0,0 +1,36 @@ +# Practical Lab Assignment - Control Structures - if/else + +1. C++ program that converts between Celsius and Fahrenheit temperatures based on user input. You can also add conversions for Kelvin. +2. C++ Program to Check Whether a Number is Even or Odd. +3. C++ Program to Check Whether a Number is Positive or Negative. +4. C++ Program to Check Whether a Character is a Vowel or Consonant. +5. C++ Program to find the Largest Number Among Three Numbers. +6. C++ Program to find if the entered year is a leap year or not. +7. C++ program that allows the user to perform basic arithmetic operations (addition, subtraction, multiplication, division) on two numbers. You can also add error handling for division by zero. +8. BMI Calculator: Create a program that calculates a person's Body Mass Index (BMI) based on their weight and height input. Provide a classification of whether the person is underweight, normal weight, overweight, or obese. Use cin, cout. + Formula: bmi = weight / (height * height) + + | bmi < 18.5 | Underweight | + | --- | --- | + | bmi < 24.9 | Normal Weight | + | bmi < 29.9 | Overweight | + | Otherwise | Obese | +9. Nested condition + - Get the `age` and `membership_status` as user input. `membership_status` can be only `Y` or `y`. So, if the age is bigger or equal to 18 and if the user is a member of our shop, we provide a 10% discount, else we charge fully. + - Write a simple chatbot program using nested conditions. +10. Write a program to calculate taxes, with the following conditions: + - If the salary is less than $1500, then there are no taxes + - If the salary is from 1501 to 3000 $ (1501<= salary < 3000) then the tax should be 10% + - If the salary is from 3001 to 5000 $ (3001 <= salary < 5000) then the tax should be 20% + - If the salary is above $5000, then the tax should be 30% + + **Hint: Formula for finding tax (salary * percentage) / 100** + + You must output: + - Tax percentage + - Salary after taxes +11. Switch + - Program to use `switch` statement. Display Monday to Sunday. + - Program to display arithmetic operator using switch case. +12. C++ Program to Find all Roots of a Quadratic equation. +13. C++ Program to Check Whether a Character is an Alphabet or not. diff --git a/OOP1-Lab2/README.md b/OOP1-Lab2/README.md deleted file mode 100644 index f31e652..0000000 --- a/OOP1-Lab2/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# Practical Lab Assignment - Control Structures - if/else - -1. Program to convert temperature from degree centigrade to Fahrenheit. -2. Program to show swap of two no’s without using third variable. -3. Program to find greatest in 3 numbers. -4. Program to find that entered year is leap year or not. -5. Program to find whether given no is even or odd. \ No newline at end of file diff --git a/OOP1-Lab2/Temperature.cpp b/OOP1-Lab2/Temperature.cpp deleted file mode 100644 index 9d1e82b..0000000 --- a/OOP1-Lab2/Temperature.cpp +++ /dev/null @@ -1,14 +0,0 @@ -#include -using namespace std; - -int main3() -{ - float C, F; - cout << "Enter your temperature in Celcius: "; - cin >> C; - F = C * 1.8 + 32; - cout << "In Celcius: " << C << "*C ;" << endl; - cout << "In Fahrenheit: " << F << "F ;" << endl; - - return 0; -} \ No newline at end of file diff --git a/README.md b/README.md index d91988a..f8531e4 100644 --- a/README.md +++ b/README.md @@ -58,16 +58,18 @@ 10. C++ Program to Calculate the Area of Right Angle Triangle. 11. C++ Program to Calculate the Area and Perimeter of a Rectangle. 12. C++ Program to Calculate the Area and Perimeter of a Square. -13. C++ program that converts between Celsius and Fahrenheit temperatures based on user input. You can also add conversions for Kelvin. -14. C++ Program to Find ASCII Value of a Character. -15. C++ Program to Find the Size of int, float, double, and char. -16. C++ Program to Check Whether a Number is Even or Odd. -17. C++ Program to Check Whether a Number is Positive or Negative. -18. C++ Program to Check Whether a Character is a Vowel or Consonant. -19. C++ Program to find the Largest Number Among Three Numbers. -20. C++ Program to find if the entered year is a leap year or not. -21. C++ program that allows the user to perform basic arithmetic operations (addition, subtraction, multiplication, division) on two numbers. You can also add error handling for division by zero. -22. BMI Calculator: Create a program that calculates a person's Body Mass Index (BMI) based on their weight and height input. Provide a classification of whether the person is underweight, normal weight, overweight, or obese. Use cin, cout. +13. C++ Program to Find ASCII Value of a Character. +14. C++ Program to Find the Size of int, float, double, and char. +15. C++ Program to Swap Two Numbers. + +16. C++ program that converts between Celsius and Fahrenheit temperatures based on user input. You can also add conversions for Kelvin. +17. C++ Program to Check Whether a Number is Even or Odd. +18. C++ Program to Check Whether a Number is Positive or Negative. +19. C++ Program to Check Whether a Character is a Vowel or Consonant. +20. C++ Program to find the Largest Number Among Three Numbers. +21. C++ Program to find if the entered year is a leap year or not. +22. C++ program that allows the user to perform basic arithmetic operations (addition, subtraction, multiplication, division) on two numbers. You can also add error handling for division by zero. +23. BMI Calculator: Create a program that calculates a person's Body Mass Index (BMI) based on their weight and height input. Provide a classification of whether the person is underweight, normal weight, overweight, or obese. Use cin, cout. Formula: bmi = weight / (height * height) | bmi < 18.5 | Underweight | @@ -75,10 +77,10 @@ | bmi < 24.9 | Normal Weight | | bmi < 29.9 | Overweight | | Otherwise | Obese | -23. Nested condition +24. Nested condition - Get the `age` and `membership_status` as user input. `membership_status` can be only `Y` or `y`. So, if the age is bigger or equal to 18 and if the user is a member of our shop, we provide a 10% discount, else we charge fully. - Write a simple chatbot program using nested conditions. -24. Write a program to calculate taxes, with the following conditions: +25. Write a program to calculate taxes, with the following conditions: - If the salary is less than $1500, then there are no taxes - If the salary is from 1501 to 3000 $ (1501<= salary < 3000) then the tax should be 10% - If the salary is from 3001 to 5000 $ (3001 <= salary < 5000) then the tax should be 20% @@ -89,12 +91,12 @@ You must output: - Tax percentage - Salary after taxes -24. Switch +26. Switch: - Program to use `switch` statement. Display Monday to Sunday. - Program to display arithmetic operator using switch case. -25. C++ Program to Swap Two Numbers. -26. C++ Program to Find all Roots of a Quadratic equation. -27. C++ Program to Check Whether a Character is an Alphabet or not. +27. C++ Program to Find all Roots of a Quadratic equation. +28. C++ Program to Check Whether a Character is an Alphabet or not. + 28. C++ Program to Calculate the Sum of Natural Numbers. 29. Program to calculate the sum of numbers from m to n. - Hint: Input two numbers m and n. Find the sum of all numbers from m to n. For example m=3 and n=8 then sum will be 3 + 4 + 5 + 6 + 7 + 8 = 33. @@ -166,30 +168,34 @@ 56. C++ Program to Convert Binary Number to Decimal and vice-versa. 57. C++ Program to Convert Octal Number to Decimal and vice-versa. 58. C++ Program to Convert Binary Numbers to Octal and vice-versa. -59. C++ Program to Reverse a Sentence Using Recursion. -50. C++ Program to calculate the power using recursion. -51. Write a program to calculate the area of a circle using functions. -52. Simple Calculator Program: ****Create a program that acts as a basic calculator, allowing users to perform addition, subtraction, multiplication, and division. Use functions for each operation. + +59. C++ Program to Reverse a Sentence using recursion function. +50. C++ Program to calculate the power using recursion function. +51. Build a program for calculating the area and perimeter of various geometric shapes (circle, rectangle, triangle, etc.) using separate functions for each shape. +52. Simple Calculator Program: Create a program that acts as a basic calculator, allowing users to perform addition, subtraction, multiplication, and division. Use functions for each operation. 53. Write a program to swap two values using functions. 54. Write a program to convert time to minutes using functions. (input 3 variables namely hours, minutes, and seconds. Convert everything into minutes.) -55. Write a program to sum the Fibonacci series up to n (input n). 1, 1, 2, 3, 5, 8, 13, … +55. Write a program to sum the Fibonacci series up to n (input n). 1, 1, 2, 3, 5, 8, 13, 56. Function Overloading and Default Arguments: Build a program for calculating the area and perimeter of various geometric shapes (circle, rectangle, triangle, etc.) using separate functions for each shape. Overload functions for shapes with different parameters. 57. Employee Payroll: ****Design a program that calculates employee payroll, including basic salary, overtime pay, and deductions. Use functions to compute each component. +57. Temperature in °C can be converted to °F using this formula: °F = (°C x 9/5) + 32. Write a function which converts °C to °F, convert_celsius_to-fahrenheit. +57. Write a function called check-season, it takes a month parameter and returns the season: Autumn, Winter, Spring or Summer. +58. Write a function called calculate_slope which return the slope of a linear equation. 58. **Student Grade Tracker:** Create a program that allows teachers to enter student grades and calculate averages, find the highest and lowest scores, and display statistics. 59. **Library Management System:** Create a simple library management system where you can store and manage a list of books using arrays. Ask the user to enter the book names. You should have the function display the book names. Create a `void` function. You should have the functionality to update the book name. To do this create another function. And pass index as argument. -60. C++ Program to merge two arrays. -61. C++ Program to search the value in the array and return its index, if the value is not found print “Item not found”. -62. ****Number Sorting:** Write a program that reads a list of numbers into an array and sorts them in ascending or descending order using a sorting algorithm. +60. Write a function to merge two arrays. +61. Write a function to search the value in the array and return its index, if the value is not found print “Item not found”. +62. **Number Sorting:** Write a program that reads a list of numbers into an array and sorts them in ascending or descending order using a sorting algorithm. 63. **Matrix Operations:** Write a program for basic matrix operations, such as addition, subtraction, multiplication, and transposition. 64. In a small company, there are five salesmen. Each salesman is supposed to sell three products. Write a program using a 2D array to print **(Input from user)**. The total sales by each salesman and Total sales of each item. 65. C++ Program to Calculate Standard Deviation. -66. C++ Program to Multiply Two Matrices by Passing the Matrix to a Function. + 67. C++ Program to Access Elements of an Array Using Pointer. 68. Write a program that declares an integer variable, assigns a value to it, and then uses a pointer to print the value. 69. Swap the values of two integer variables using pointers. 70. Write a program that finds the sum of elements in an integer array using a pointer. 71. Create a dynamic integer array and prompt the user for the array size. Fill the array with user input values. -72. C++ Program Swap Numbers in Cyclic Order Using Call by Reference. + 62. C++ Program to Find Largest Number Using Dynamic Memory Allocation. 63. C++ Program to Find the Frequency of Characters in a String. 64. C++ Program to count the number of vowels, consonants, and so on. @@ -207,7 +213,7 @@ 76. C++ Program to Write a Sentence to a File. 77. C++ Program to Read a Line From a File and Display it. 78. C++ Program to Display its own Source Code as Output. -79. C++ Programming Code To Create Pyramid and Pattern. + 80. [OOP] Define a class called **`Car`** with attributes like **`model`**, and **`year`**. Create an object of the **`Car`** class and set its attributes. Then, print out the car's details. 81. [OOP] Redo the same program above using `this->` 82. [OOP] Temperature converter. Write a class called **`TemperatureConverter`** with methods to convert between Celsius and Fahrenheit. From Celsius Kelvin. to Create an object of this class, and use it to convert a temperature from one scale to another. From 018d1b47d3b687c2198c268b7ae76249943b2a6b Mon Sep 17 00:00:00 2001 From: Rustam Zokirov Date: Mon, 13 May 2024 11:53:55 +0500 Subject: [PATCH 7/9] Update repo structure --- {OOP1-Lab3 => Lab_03}/Digits.cpp | 0 {OOP1-Lab3 => Lab_03}/Fibonacci.cpp | 0 {OOP1-Lab3 => Lab_03}/Operators.cpp | 0 {OOP1-Lab3 => Lab_03}/Prime.cpp | 0 {OOP1-Lab3 => Lab_03}/README.md | 0 {OOP1-Lab3 => Lab_03}/Sum1.cpp | 0 {OOP1-Lab3 => Lab_03}/Sum2.cpp | 0 {OOP1-Lab3 => Lab_03}/Weekdays.cpp | 0 {OOP1-Lab3 => Lab_03}/mn.cpp | 0 {OOP1-Lab4 => Lab_04}/README.md | 0 {OOP1-Lab4 => Lab_04}/Source.cpp | 0 {OOP1-Lab4 => Lab_04}/Source1.cpp | 0 {OOP1-Lab4 => Lab_04}/Source2.cpp | 0 {OOP1-Lab4 => Lab_04}/Source3.cpp | 0 {OOP1-Lab4 => Lab_04}/Source4.cpp | 0 {OOP1-Lab5 => Lab_05}/README.md | 0 {OOP1-Lab5 => Lab_05}/Source.cpp | 0 {OOP1-Lab5 => Lab_05}/Source1.cpp | 0 {OOP1-Lab5 => Lab_05}/Source2.cpp | 0 {OOP1-Lab5 => Lab_05}/Source3.cpp | 0 {OOP1-Lab6 => Lab_06}/README.md | 0 {OOP1-Lab6 => Lab_06}/Source.cpp | 0 {OOP1-Lab7 => Lab_07}/README.md | 0 {OOP1-Lab7 => Lab_07}/fibonacci.cpp | 0 {OOP1-Lab7 => Lab_07}/gcd.cpp | 0 {OOP1-Lab7 => Lab_07}/power.cpp | 0 {OOP1-Lab7 => Lab_07}/sum.cpp | 0 {OOP1-Lab8 => Lab_08}/README.md | 0 {OOP1-Lab8 => Lab_08}/Sort.cpp | 0 {OOP1-Lab8 => Lab_08}/average.cpp | 0 {OOP1-Lab8 => Lab_08}/deleting.cpp | 0 {OOP1-Lab8 => Lab_08}/display.cpp | 0 {OOP1-Lab8 => Lab_08}/inserting.cpp | 0 {OOP1-Lab9 => Lab_09}/Pascal.cpp | 0 {OOP1-Lab9 => Lab_09}/Pascal2.cpp | 0 {OOP1-Lab9 => Lab_09}/README.md | 0 {OOP1-Lab9 => Lab_09}/Source1.cpp | 0 {OOP1-Lab9 => Lab_09}/Source2.cpp | 0 {OOP2_Lab1 => Lab_10}/README.md | 0 {OOP2_Lab1 => Lab_10}/studentCourseEvaluation.cpp | 0 {OOP2_Lab2 => Lab_11}/README.md | 0 {OOP2_Lab2 => Lab_11}/Source.cpp | 0 {OOP2_Lab3 => Lab_12}/README.md | 0 {OOP2_Lab3 => Lab_12}/main.cpp | 0 {OOP2_Lab4 => Lab_13}/README.md | 0 {OOP2_Lab4 => Lab_13}/main1.cpp | 0 {OOP2_Lab5 => Lab_14}/README.md | 0 {OOP2_Lab5 => Lab_14}/Source.cpp | 0 {OOP2_Lab6 => Lab_15}/README.md | 0 {OOP2_Lab6 => Lab_15}/Source.cpp | 0 {OOP2_Lab7 => Lab_16}/README.docx | Bin {OOP2_Lab7 => Lab_16}/Source.cpp | 0 {OOP2_Lab7_Extra => Lab_17}/Activity-1.docx | Bin {OOP2_Lab7_Extra => Lab_17}/Education.cpp | 0 {OOP2_Lab8 => Lab_18}/README.md | 0 {OOP2_Lab8 => Lab_18}/main.cpp | 0 {OOP2_Lab9 => Lab_19}/README.md | 0 {OOP2_Lab9 => Lab_19}/contacts.txt | 0 {OOP2_Lab9 => Lab_19}/main.cpp | 0 {OOP2_Lab9 => Lab_19}/numbers.txt | 0 {OOP2_Lab9 => Lab_19}/one.txt | 0 {OOP2_Lab9 => Lab_19}/total.txt | 0 {OOP2_Lab9 => Lab_19}/two.txt | 0 {OOP2_Lab10 => Lab_20}/Person.cpp | 0 {OOP2_Lab10 => Lab_20}/README.md | 0 {OOP2_Lab10 => Lab_20}/contacts | Bin {OOP2-FA => Lab_21}/city_temperature_control.cpp | 0 {OOP2-FA => Lab_21}/e-commerce.cpp | 0 .../Header.h | 0 .../Project3.exe | Bin .../data.txt | 0 .../main.cpp | 0 .../BreadBakery.h | 0 .../Header.h | 0 .../Loading.h | 0 .../Vegetables.h | 0 .../Water.h | 0 .../main.cpp | 0 .../Loading_Page.h | 0 .../Person.h | 0 .../Products.h | 0 .../User_Info.txt | 0 .../Validation.h | 0 .../main.cpp | 0 .../screenshots/authentication.png | Bin .../screenshots/authorization.png | Bin .../screenshots/loading.png | Bin .../screenshots/menu.png | Bin .../screenshots/product list.png | Bin .../Loading_Page.h | 0 .../Password_Vali_Asterisk.h | 0 .../Person.h | 0 .../Products.h | 0 .../User_Info.txt | 0 .../Validation.h | 0 .../main.cpp | 0 .../screenshots/authentication.png | Bin .../screenshots/authorization.png | Bin .../screenshots/loading.png | Bin .../screenshots/menu.png | Bin .../screenshots/product list.png | Bin .../olaf-game.cpp | 0 .../sfml/bin/openal32.dll | Bin .../sfml/bin/sfml-audio-2.dll | Bin .../sfml/bin/sfml-audio-d-2.dll | Bin .../sfml/bin/sfml-graphics-2.dll | Bin .../sfml/bin/sfml-graphics-d-2.dll | Bin .../sfml/bin/sfml-network-2.dll | Bin .../sfml/bin/sfml-network-d-2.dll | Bin .../sfml/bin/sfml-system-2.dll | Bin .../sfml/bin/sfml-system-d-2.dll | Bin .../sfml/bin/sfml-window-2.dll | Bin .../sfml/bin/sfml-window-d-2.dll | Bin .../sfml/include/SFML/Audio.hpp | 0 .../sfml/include/SFML/Audio/AlResource.hpp | 0 .../sfml/include/SFML/Audio/Export.hpp | 0 .../sfml/include/SFML/Audio/InputSoundFile.hpp | 0 .../sfml/include/SFML/Audio/Listener.hpp | 0 .../sfml/include/SFML/Audio/Music.hpp | 0 .../sfml/include/SFML/Audio/OutputSoundFile.hpp | 0 .../sfml/include/SFML/Audio/Sound.hpp | 0 .../sfml/include/SFML/Audio/SoundBuffer.hpp | 0 .../sfml/include/SFML/Audio/SoundBufferRecorder.hpp | 0 .../sfml/include/SFML/Audio/SoundFileFactory.hpp | 0 .../sfml/include/SFML/Audio/SoundFileFactory.inl | 0 .../sfml/include/SFML/Audio/SoundFileReader.hpp | 0 .../sfml/include/SFML/Audio/SoundFileWriter.hpp | 0 .../sfml/include/SFML/Audio/SoundRecorder.hpp | 0 .../sfml/include/SFML/Audio/SoundSource.hpp | 0 .../sfml/include/SFML/Audio/SoundStream.hpp | 0 .../sfml/include/SFML/Config.hpp | 0 .../sfml/include/SFML/GpuPreference.hpp | 0 .../sfml/include/SFML/Graphics.hpp | 0 .../sfml/include/SFML/Graphics/BlendMode.hpp | 0 .../sfml/include/SFML/Graphics/CircleShape.hpp | 0 .../sfml/include/SFML/Graphics/Color.hpp | 0 .../sfml/include/SFML/Graphics/ConvexShape.hpp | 0 .../sfml/include/SFML/Graphics/Drawable.hpp | 0 .../sfml/include/SFML/Graphics/Export.hpp | 0 .../sfml/include/SFML/Graphics/Font.hpp | 0 .../sfml/include/SFML/Graphics/Glsl.hpp | 0 .../sfml/include/SFML/Graphics/Glsl.inl | 0 .../sfml/include/SFML/Graphics/Glyph.hpp | 0 .../sfml/include/SFML/Graphics/Image.hpp | 0 .../sfml/include/SFML/Graphics/PrimitiveType.hpp | 0 .../sfml/include/SFML/Graphics/Rect.hpp | 0 .../sfml/include/SFML/Graphics/Rect.inl | 0 .../sfml/include/SFML/Graphics/RectangleShape.hpp | 0 .../sfml/include/SFML/Graphics/RenderStates.hpp | 0 .../sfml/include/SFML/Graphics/RenderTarget.hpp | 0 .../sfml/include/SFML/Graphics/RenderTexture.hpp | 0 .../sfml/include/SFML/Graphics/RenderWindow.hpp | 0 .../sfml/include/SFML/Graphics/Shader.hpp | 0 .../sfml/include/SFML/Graphics/Shape.hpp | 0 .../sfml/include/SFML/Graphics/Sprite.hpp | 0 .../sfml/include/SFML/Graphics/Text.hpp | 0 .../sfml/include/SFML/Graphics/Texture.hpp | 0 .../sfml/include/SFML/Graphics/Transform.hpp | 0 .../sfml/include/SFML/Graphics/Transformable.hpp | 0 .../sfml/include/SFML/Graphics/Vertex.hpp | 0 .../sfml/include/SFML/Graphics/VertexArray.hpp | 0 .../sfml/include/SFML/Graphics/VertexBuffer.hpp | 0 .../sfml/include/SFML/Graphics/View.hpp | 0 .../sfml/include/SFML/Main.hpp | 0 .../sfml/include/SFML/Network.hpp | 0 .../sfml/include/SFML/Network/Export.hpp | 0 .../sfml/include/SFML/Network/Ftp.hpp | 0 .../sfml/include/SFML/Network/Http.hpp | 0 .../sfml/include/SFML/Network/IpAddress.hpp | 0 .../sfml/include/SFML/Network/Packet.hpp | 0 .../sfml/include/SFML/Network/Socket.hpp | 0 .../sfml/include/SFML/Network/SocketHandle.hpp | 0 .../sfml/include/SFML/Network/SocketSelector.hpp | 0 .../sfml/include/SFML/Network/TcpListener.hpp | 0 .../sfml/include/SFML/Network/TcpSocket.hpp | 0 .../sfml/include/SFML/Network/UdpSocket.hpp | 0 .../sfml/include/SFML/OpenGL.hpp | 0 .../sfml/include/SFML/System.hpp | 0 .../sfml/include/SFML/System/Clock.hpp | 0 .../sfml/include/SFML/System/Err.hpp | 0 .../sfml/include/SFML/System/Export.hpp | 0 .../sfml/include/SFML/System/FileInputStream.hpp | 0 .../sfml/include/SFML/System/InputStream.hpp | 0 .../sfml/include/SFML/System/Lock.hpp | 0 .../sfml/include/SFML/System/MemoryInputStream.hpp | 0 .../sfml/include/SFML/System/Mutex.hpp | 0 .../sfml/include/SFML/System/NativeActivity.hpp | 0 .../sfml/include/SFML/System/NonCopyable.hpp | 0 .../sfml/include/SFML/System/Sleep.hpp | 0 .../sfml/include/SFML/System/String.hpp | 0 .../sfml/include/SFML/System/String.inl | 0 .../sfml/include/SFML/System/Thread.hpp | 0 .../sfml/include/SFML/System/Thread.inl | 0 .../sfml/include/SFML/System/ThreadLocal.hpp | 0 .../sfml/include/SFML/System/ThreadLocalPtr.hpp | 0 .../sfml/include/SFML/System/ThreadLocalPtr.inl | 0 .../sfml/include/SFML/System/Time.hpp | 0 .../sfml/include/SFML/System/Utf.hpp | 0 .../sfml/include/SFML/System/Utf.inl | 0 .../sfml/include/SFML/System/Vector2.hpp | 0 .../sfml/include/SFML/System/Vector2.inl | 0 .../sfml/include/SFML/System/Vector3.hpp | 0 .../sfml/include/SFML/System/Vector3.inl | 0 .../sfml/include/SFML/Window.hpp | 0 .../sfml/include/SFML/Window/Clipboard.hpp | 0 .../sfml/include/SFML/Window/Context.hpp | 0 .../sfml/include/SFML/Window/ContextSettings.hpp | 0 .../sfml/include/SFML/Window/Cursor.hpp | 0 .../sfml/include/SFML/Window/Event.hpp | 0 .../sfml/include/SFML/Window/Export.hpp | 0 .../sfml/include/SFML/Window/GlResource.hpp | 0 .../sfml/include/SFML/Window/Joystick.hpp | 0 .../sfml/include/SFML/Window/Keyboard.hpp | 0 .../sfml/include/SFML/Window/Mouse.hpp | 0 .../sfml/include/SFML/Window/Sensor.hpp | 0 .../sfml/include/SFML/Window/Touch.hpp | 0 .../sfml/include/SFML/Window/VideoMode.hpp | 0 .../sfml/include/SFML/Window/Window.hpp | 0 .../sfml/include/SFML/Window/WindowHandle.hpp | 0 .../sfml/include/SFML/Window/WindowStyle.hpp | 0 .../sfml/lib/cmake/SFML/SFMLConfig.cmake | 0 .../lib/cmake/SFML/SFMLConfigDependencies.cmake | 0 .../sfml/lib/cmake/SFML/SFMLConfigVersion.cmake | 0 .../lib/cmake/SFML/SFMLSharedTargets-debug.cmake | 0 .../lib/cmake/SFML/SFMLSharedTargets-release.cmake | 0 .../sfml/lib/cmake/SFML/SFMLSharedTargets.cmake | 0 .../lib/cmake/SFML/SFMLStaticTargets-debug.cmake | 0 .../lib/cmake/SFML/SFMLStaticTargets-release.cmake | 0 .../sfml/lib/cmake/SFML/SFMLStaticTargets.cmake | 0 .../sfml/lib/flac.lib | Bin .../sfml/lib/freetype.lib | Bin .../sfml/lib/ogg.lib | Bin .../sfml/lib/openal32.lib | Bin .../sfml/lib/sfml-audio-d.lib | Bin .../sfml/lib/sfml-audio-d.pdb | Bin .../sfml/lib/sfml-audio-s-d.lib | Bin .../sfml/lib/sfml-audio-s-d.pdb | Bin .../sfml/lib/sfml-audio-s.lib | Bin .../sfml/lib/sfml-audio.lib | Bin .../sfml/lib/sfml-graphics-d.lib | Bin .../sfml/lib/sfml-graphics-d.pdb | Bin .../sfml/lib/sfml-graphics-s-d.lib | Bin .../sfml/lib/sfml-graphics-s-d.pdb | Bin .../sfml/lib/sfml-graphics-s.lib | Bin .../sfml/lib/sfml-graphics.lib | Bin .../sfml/lib/sfml-main-d.lib | Bin .../sfml/lib/sfml-main-s-d.pdb | Bin .../sfml/lib/sfml-main.lib | Bin .../sfml/lib/sfml-network-d.lib | Bin .../sfml/lib/sfml-network-d.pdb | Bin .../sfml/lib/sfml-network-s-d.lib | Bin .../sfml/lib/sfml-network-s-d.pdb | Bin .../sfml/lib/sfml-network-s.lib | Bin .../sfml/lib/sfml-network.lib | Bin .../sfml/lib/sfml-system-d.lib | Bin .../sfml/lib/sfml-system-d.pdb | Bin .../sfml/lib/sfml-system-s-d.lib | Bin .../sfml/lib/sfml-system-s-d.pdb | Bin .../sfml/lib/sfml-system-s.lib | Bin .../sfml/lib/sfml-system.lib | Bin .../sfml/lib/sfml-window-d.lib | Bin .../sfml/lib/sfml-window-d.pdb | Bin .../sfml/lib/sfml-window-s-d.lib | Bin .../sfml/lib/sfml-window-s-d.pdb | Bin .../sfml/lib/sfml-window-s.lib | Bin .../sfml/lib/sfml-window.lib | Bin .../sfml/lib/vorbis.lib | Bin .../sfml/lib/vorbisenc.lib | Bin .../sfml/lib/vorbisfile.lib | Bin .../new_year.cpp | 0 .../only_numbers.cpp | 0 .../quiz-game-with-oop.cpp | 0 {Quiz Game => Project_Quiz_Game}/quiz-game.cpp | 0 {Snake Game => Project_Snake_Game}/snake-game.cpp | 0 274 files changed, 0 insertions(+), 0 deletions(-) rename {OOP1-Lab3 => Lab_03}/Digits.cpp (100%) rename {OOP1-Lab3 => Lab_03}/Fibonacci.cpp (100%) rename {OOP1-Lab3 => Lab_03}/Operators.cpp (100%) rename {OOP1-Lab3 => Lab_03}/Prime.cpp (100%) rename {OOP1-Lab3 => Lab_03}/README.md (100%) rename {OOP1-Lab3 => Lab_03}/Sum1.cpp (100%) rename {OOP1-Lab3 => Lab_03}/Sum2.cpp (100%) rename {OOP1-Lab3 => Lab_03}/Weekdays.cpp (100%) rename {OOP1-Lab3 => Lab_03}/mn.cpp (100%) rename {OOP1-Lab4 => Lab_04}/README.md (100%) rename {OOP1-Lab4 => Lab_04}/Source.cpp (100%) rename {OOP1-Lab4 => Lab_04}/Source1.cpp (100%) rename {OOP1-Lab4 => Lab_04}/Source2.cpp (100%) rename {OOP1-Lab4 => Lab_04}/Source3.cpp (100%) rename {OOP1-Lab4 => Lab_04}/Source4.cpp (100%) rename {OOP1-Lab5 => Lab_05}/README.md (100%) rename {OOP1-Lab5 => Lab_05}/Source.cpp (100%) rename {OOP1-Lab5 => Lab_05}/Source1.cpp (100%) rename {OOP1-Lab5 => Lab_05}/Source2.cpp (100%) rename {OOP1-Lab5 => Lab_05}/Source3.cpp (100%) rename {OOP1-Lab6 => Lab_06}/README.md (100%) rename {OOP1-Lab6 => Lab_06}/Source.cpp (100%) rename {OOP1-Lab7 => Lab_07}/README.md (100%) rename {OOP1-Lab7 => Lab_07}/fibonacci.cpp (100%) rename {OOP1-Lab7 => Lab_07}/gcd.cpp (100%) rename {OOP1-Lab7 => Lab_07}/power.cpp (100%) rename {OOP1-Lab7 => Lab_07}/sum.cpp (100%) rename {OOP1-Lab8 => Lab_08}/README.md (100%) rename {OOP1-Lab8 => Lab_08}/Sort.cpp (100%) rename {OOP1-Lab8 => Lab_08}/average.cpp (100%) rename {OOP1-Lab8 => Lab_08}/deleting.cpp (100%) rename {OOP1-Lab8 => Lab_08}/display.cpp (100%) rename {OOP1-Lab8 => Lab_08}/inserting.cpp (100%) rename {OOP1-Lab9 => Lab_09}/Pascal.cpp (100%) rename {OOP1-Lab9 => Lab_09}/Pascal2.cpp (100%) rename {OOP1-Lab9 => Lab_09}/README.md (100%) rename {OOP1-Lab9 => Lab_09}/Source1.cpp (100%) rename {OOP1-Lab9 => Lab_09}/Source2.cpp (100%) rename {OOP2_Lab1 => Lab_10}/README.md (100%) rename {OOP2_Lab1 => Lab_10}/studentCourseEvaluation.cpp (100%) rename {OOP2_Lab2 => Lab_11}/README.md (100%) rename {OOP2_Lab2 => Lab_11}/Source.cpp (100%) rename {OOP2_Lab3 => Lab_12}/README.md (100%) rename {OOP2_Lab3 => Lab_12}/main.cpp (100%) rename {OOP2_Lab4 => Lab_13}/README.md (100%) rename {OOP2_Lab4 => Lab_13}/main1.cpp (100%) rename {OOP2_Lab5 => Lab_14}/README.md (100%) rename {OOP2_Lab5 => Lab_14}/Source.cpp (100%) rename {OOP2_Lab6 => Lab_15}/README.md (100%) rename {OOP2_Lab6 => Lab_15}/Source.cpp (100%) rename {OOP2_Lab7 => Lab_16}/README.docx (100%) rename {OOP2_Lab7 => Lab_16}/Source.cpp (100%) rename {OOP2_Lab7_Extra => Lab_17}/Activity-1.docx (100%) rename {OOP2_Lab7_Extra => Lab_17}/Education.cpp (100%) rename {OOP2_Lab8 => Lab_18}/README.md (100%) rename {OOP2_Lab8 => Lab_18}/main.cpp (100%) rename {OOP2_Lab9 => Lab_19}/README.md (100%) rename {OOP2_Lab9 => Lab_19}/contacts.txt (100%) rename {OOP2_Lab9 => Lab_19}/main.cpp (100%) rename {OOP2_Lab9 => Lab_19}/numbers.txt (100%) rename {OOP2_Lab9 => Lab_19}/one.txt (100%) rename {OOP2_Lab9 => Lab_19}/total.txt (100%) rename {OOP2_Lab9 => Lab_19}/two.txt (100%) rename {OOP2_Lab10 => Lab_20}/Person.cpp (100%) rename {OOP2_Lab10 => Lab_20}/README.md (100%) rename {OOP2_Lab10 => Lab_20}/contacts (100%) rename {OOP2-FA => Lab_21}/city_temperature_control.cpp (100%) rename {OOP2-FA => Lab_21}/e-commerce.cpp (100%) rename {Bank management system => Project_Bank_Management_System}/Header.h (100%) rename {Bank management system => Project_Bank_Management_System}/Project3.exe (100%) rename {Bank management system => Project_Bank_Management_System}/data.txt (100%) rename {Bank management system => Project_Bank_Management_System}/main.cpp (100%) rename {E-Commerce App V1.0 => Project_E-Commerce_App_V1.0}/BreadBakery.h (100%) rename {E-Commerce App V1.0 => Project_E-Commerce_App_V1.0}/Header.h (100%) rename {E-Commerce App V1.0 => Project_E-Commerce_App_V1.0}/Loading.h (100%) rename {E-Commerce App V1.0 => Project_E-Commerce_App_V1.0}/Vegetables.h (100%) rename {E-Commerce App V1.0 => Project_E-Commerce_App_V1.0}/Water.h (100%) rename {E-Commerce App V1.0 => Project_E-Commerce_App_V1.0}/main.cpp (100%) rename {E-Commerce App V2.0 => Project_E-Commerce_App_V2.0}/Loading_Page.h (100%) rename {E-Commerce App V2.0 => Project_E-Commerce_App_V2.0}/Person.h (100%) rename {E-Commerce App V2.0 => Project_E-Commerce_App_V2.0}/Products.h (100%) rename {E-Commerce App V2.0 => Project_E-Commerce_App_V2.0}/User_Info.txt (100%) rename {E-Commerce App V2.0 => Project_E-Commerce_App_V2.0}/Validation.h (100%) rename {E-Commerce App V2.0 => Project_E-Commerce_App_V2.0}/main.cpp (100%) rename {E-Commerce App V2.0 => Project_E-Commerce_App_V2.0}/screenshots/authentication.png (100%) rename {E-Commerce App V2.0 => Project_E-Commerce_App_V2.0}/screenshots/authorization.png (100%) rename {E-Commerce App V2.0 => Project_E-Commerce_App_V2.0}/screenshots/loading.png (100%) rename {E-Commerce App V2.0 => Project_E-Commerce_App_V2.0}/screenshots/menu.png (100%) rename {E-Commerce App V2.0 => Project_E-Commerce_App_V2.0}/screenshots/product list.png (100%) rename {E-Commerce App V3.0 => Project_E-Commerce_App_V3.0}/Loading_Page.h (100%) rename {E-Commerce App V3.0 => Project_E-Commerce_App_V3.0}/Password_Vali_Asterisk.h (100%) rename {E-Commerce App V3.0 => Project_E-Commerce_App_V3.0}/Person.h (100%) rename {E-Commerce App V3.0 => Project_E-Commerce_App_V3.0}/Products.h (100%) rename {E-Commerce App V3.0 => Project_E-Commerce_App_V3.0}/User_Info.txt (100%) rename {E-Commerce App V3.0 => Project_E-Commerce_App_V3.0}/Validation.h (100%) rename {E-Commerce App V3.0 => Project_E-Commerce_App_V3.0}/main.cpp (100%) rename {E-Commerce App V3.0 => Project_E-Commerce_App_V3.0}/screenshots/authentication.png (100%) rename {E-Commerce App V3.0 => Project_E-Commerce_App_V3.0}/screenshots/authorization.png (100%) rename {E-Commerce App V3.0 => Project_E-Commerce_App_V3.0}/screenshots/loading.png (100%) rename {E-Commerce App V3.0 => Project_E-Commerce_App_V3.0}/screenshots/menu.png (100%) rename {E-Commerce App V3.0 => Project_E-Commerce_App_V3.0}/screenshots/product list.png (100%) rename {Labirint Game => Project_Labirint_Game}/olaf-game.cpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/bin/openal32.dll (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/bin/sfml-audio-2.dll (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/bin/sfml-audio-d-2.dll (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/bin/sfml-graphics-2.dll (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/bin/sfml-graphics-d-2.dll (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/bin/sfml-network-2.dll (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/bin/sfml-network-d-2.dll (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/bin/sfml-system-2.dll (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/bin/sfml-system-d-2.dll (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/bin/sfml-window-2.dll (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/bin/sfml-window-d-2.dll (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Audio.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Audio/AlResource.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Audio/Export.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Audio/InputSoundFile.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Audio/Listener.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Audio/Music.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Audio/OutputSoundFile.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Audio/Sound.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Audio/SoundBuffer.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Audio/SoundBufferRecorder.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Audio/SoundFileFactory.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Audio/SoundFileFactory.inl (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Audio/SoundFileReader.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Audio/SoundFileWriter.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Audio/SoundRecorder.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Audio/SoundSource.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Audio/SoundStream.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Config.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/GpuPreference.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/BlendMode.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/CircleShape.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/Color.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/ConvexShape.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/Drawable.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/Export.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/Font.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/Glsl.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/Glsl.inl (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/Glyph.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/Image.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/PrimitiveType.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/Rect.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/Rect.inl (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/RectangleShape.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/RenderStates.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/RenderTarget.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/RenderTexture.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/RenderWindow.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/Shader.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/Shape.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/Sprite.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/Text.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/Texture.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/Transform.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/Transformable.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/Vertex.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/VertexArray.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/VertexBuffer.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Graphics/View.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Main.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Network.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Network/Export.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Network/Ftp.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Network/Http.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Network/IpAddress.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Network/Packet.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Network/Socket.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Network/SocketHandle.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Network/SocketSelector.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Network/TcpListener.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Network/TcpSocket.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Network/UdpSocket.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/OpenGL.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/System.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/System/Clock.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/System/Err.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/System/Export.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/System/FileInputStream.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/System/InputStream.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/System/Lock.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/System/MemoryInputStream.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/System/Mutex.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/System/NativeActivity.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/System/NonCopyable.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/System/Sleep.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/System/String.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/System/String.inl (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/System/Thread.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/System/Thread.inl (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/System/ThreadLocal.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/System/ThreadLocalPtr.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/System/ThreadLocalPtr.inl (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/System/Time.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/System/Utf.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/System/Utf.inl (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/System/Vector2.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/System/Vector2.inl (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/System/Vector3.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/System/Vector3.inl (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Window.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Window/Clipboard.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Window/Context.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Window/ContextSettings.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Window/Cursor.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Window/Event.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Window/Export.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Window/GlResource.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Window/Joystick.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Window/Keyboard.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Window/Mouse.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Window/Sensor.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Window/Touch.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Window/VideoMode.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Window/Window.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Window/WindowHandle.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/include/SFML/Window/WindowStyle.hpp (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/cmake/SFML/SFMLConfig.cmake (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/cmake/SFML/SFMLConfigDependencies.cmake (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/cmake/SFML/SFMLConfigVersion.cmake (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/cmake/SFML/SFMLSharedTargets-debug.cmake (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/cmake/SFML/SFMLSharedTargets-release.cmake (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/cmake/SFML/SFMLSharedTargets.cmake (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/cmake/SFML/SFMLStaticTargets-debug.cmake (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/cmake/SFML/SFMLStaticTargets-release.cmake (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/cmake/SFML/SFMLStaticTargets.cmake (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/flac.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/freetype.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/ogg.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/openal32.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-audio-d.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-audio-d.pdb (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-audio-s-d.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-audio-s-d.pdb (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-audio-s.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-audio.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-graphics-d.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-graphics-d.pdb (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-graphics-s-d.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-graphics-s-d.pdb (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-graphics-s.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-graphics.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-main-d.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-main-s-d.pdb (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-main.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-network-d.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-network-d.pdb (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-network-s-d.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-network-s-d.pdb (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-network-s.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-network.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-system-d.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-system-d.pdb (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-system-s-d.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-system-s-d.pdb (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-system-s.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-system.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-window-d.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-window-d.pdb (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-window-s-d.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-window-s-d.pdb (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-window-s.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/sfml-window.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/vorbis.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/vorbisenc.lib (100%) rename {Labirint Game => Project_Labirint_Game}/sfml/lib/vorbisfile.lib (100%) rename {New Year Congratulation => Project_New_Year_Congratulation}/new_year.cpp (100%) rename {New Year Congratulation => Project_New_Year_Congratulation}/only_numbers.cpp (100%) rename {Quiz Game => Project_Quiz_Game}/quiz-game-with-oop.cpp (100%) rename {Quiz Game => Project_Quiz_Game}/quiz-game.cpp (100%) rename {Snake Game => Project_Snake_Game}/snake-game.cpp (100%) diff --git a/OOP1-Lab3/Digits.cpp b/Lab_03/Digits.cpp similarity index 100% rename from OOP1-Lab3/Digits.cpp rename to Lab_03/Digits.cpp diff --git a/OOP1-Lab3/Fibonacci.cpp b/Lab_03/Fibonacci.cpp similarity index 100% rename from OOP1-Lab3/Fibonacci.cpp rename to Lab_03/Fibonacci.cpp diff --git a/OOP1-Lab3/Operators.cpp b/Lab_03/Operators.cpp similarity index 100% rename from OOP1-Lab3/Operators.cpp rename to Lab_03/Operators.cpp diff --git a/OOP1-Lab3/Prime.cpp b/Lab_03/Prime.cpp similarity index 100% rename from OOP1-Lab3/Prime.cpp rename to Lab_03/Prime.cpp diff --git a/OOP1-Lab3/README.md b/Lab_03/README.md similarity index 100% rename from OOP1-Lab3/README.md rename to Lab_03/README.md diff --git a/OOP1-Lab3/Sum1.cpp b/Lab_03/Sum1.cpp similarity index 100% rename from OOP1-Lab3/Sum1.cpp rename to Lab_03/Sum1.cpp diff --git a/OOP1-Lab3/Sum2.cpp b/Lab_03/Sum2.cpp similarity index 100% rename from OOP1-Lab3/Sum2.cpp rename to Lab_03/Sum2.cpp diff --git a/OOP1-Lab3/Weekdays.cpp b/Lab_03/Weekdays.cpp similarity index 100% rename from OOP1-Lab3/Weekdays.cpp rename to Lab_03/Weekdays.cpp diff --git a/OOP1-Lab3/mn.cpp b/Lab_03/mn.cpp similarity index 100% rename from OOP1-Lab3/mn.cpp rename to Lab_03/mn.cpp diff --git a/OOP1-Lab4/README.md b/Lab_04/README.md similarity index 100% rename from OOP1-Lab4/README.md rename to Lab_04/README.md diff --git a/OOP1-Lab4/Source.cpp b/Lab_04/Source.cpp similarity index 100% rename from OOP1-Lab4/Source.cpp rename to Lab_04/Source.cpp diff --git a/OOP1-Lab4/Source1.cpp b/Lab_04/Source1.cpp similarity index 100% rename from OOP1-Lab4/Source1.cpp rename to Lab_04/Source1.cpp diff --git a/OOP1-Lab4/Source2.cpp b/Lab_04/Source2.cpp similarity index 100% rename from OOP1-Lab4/Source2.cpp rename to Lab_04/Source2.cpp diff --git a/OOP1-Lab4/Source3.cpp b/Lab_04/Source3.cpp similarity index 100% rename from OOP1-Lab4/Source3.cpp rename to Lab_04/Source3.cpp diff --git a/OOP1-Lab4/Source4.cpp b/Lab_04/Source4.cpp similarity index 100% rename from OOP1-Lab4/Source4.cpp rename to Lab_04/Source4.cpp diff --git a/OOP1-Lab5/README.md b/Lab_05/README.md similarity index 100% rename from OOP1-Lab5/README.md rename to Lab_05/README.md diff --git a/OOP1-Lab5/Source.cpp b/Lab_05/Source.cpp similarity index 100% rename from OOP1-Lab5/Source.cpp rename to Lab_05/Source.cpp diff --git a/OOP1-Lab5/Source1.cpp b/Lab_05/Source1.cpp similarity index 100% rename from OOP1-Lab5/Source1.cpp rename to Lab_05/Source1.cpp diff --git a/OOP1-Lab5/Source2.cpp b/Lab_05/Source2.cpp similarity index 100% rename from OOP1-Lab5/Source2.cpp rename to Lab_05/Source2.cpp diff --git a/OOP1-Lab5/Source3.cpp b/Lab_05/Source3.cpp similarity index 100% rename from OOP1-Lab5/Source3.cpp rename to Lab_05/Source3.cpp diff --git a/OOP1-Lab6/README.md b/Lab_06/README.md similarity index 100% rename from OOP1-Lab6/README.md rename to Lab_06/README.md diff --git a/OOP1-Lab6/Source.cpp b/Lab_06/Source.cpp similarity index 100% rename from OOP1-Lab6/Source.cpp rename to Lab_06/Source.cpp diff --git a/OOP1-Lab7/README.md b/Lab_07/README.md similarity index 100% rename from OOP1-Lab7/README.md rename to Lab_07/README.md diff --git a/OOP1-Lab7/fibonacci.cpp b/Lab_07/fibonacci.cpp similarity index 100% rename from OOP1-Lab7/fibonacci.cpp rename to Lab_07/fibonacci.cpp diff --git a/OOP1-Lab7/gcd.cpp b/Lab_07/gcd.cpp similarity index 100% rename from OOP1-Lab7/gcd.cpp rename to Lab_07/gcd.cpp diff --git a/OOP1-Lab7/power.cpp b/Lab_07/power.cpp similarity index 100% rename from OOP1-Lab7/power.cpp rename to Lab_07/power.cpp diff --git a/OOP1-Lab7/sum.cpp b/Lab_07/sum.cpp similarity index 100% rename from OOP1-Lab7/sum.cpp rename to Lab_07/sum.cpp diff --git a/OOP1-Lab8/README.md b/Lab_08/README.md similarity index 100% rename from OOP1-Lab8/README.md rename to Lab_08/README.md diff --git a/OOP1-Lab8/Sort.cpp b/Lab_08/Sort.cpp similarity index 100% rename from OOP1-Lab8/Sort.cpp rename to Lab_08/Sort.cpp diff --git a/OOP1-Lab8/average.cpp b/Lab_08/average.cpp similarity index 100% rename from OOP1-Lab8/average.cpp rename to Lab_08/average.cpp diff --git a/OOP1-Lab8/deleting.cpp b/Lab_08/deleting.cpp similarity index 100% rename from OOP1-Lab8/deleting.cpp rename to Lab_08/deleting.cpp diff --git a/OOP1-Lab8/display.cpp b/Lab_08/display.cpp similarity index 100% rename from OOP1-Lab8/display.cpp rename to Lab_08/display.cpp diff --git a/OOP1-Lab8/inserting.cpp b/Lab_08/inserting.cpp similarity index 100% rename from OOP1-Lab8/inserting.cpp rename to Lab_08/inserting.cpp diff --git a/OOP1-Lab9/Pascal.cpp b/Lab_09/Pascal.cpp similarity index 100% rename from OOP1-Lab9/Pascal.cpp rename to Lab_09/Pascal.cpp diff --git a/OOP1-Lab9/Pascal2.cpp b/Lab_09/Pascal2.cpp similarity index 100% rename from OOP1-Lab9/Pascal2.cpp rename to Lab_09/Pascal2.cpp diff --git a/OOP1-Lab9/README.md b/Lab_09/README.md similarity index 100% rename from OOP1-Lab9/README.md rename to Lab_09/README.md diff --git a/OOP1-Lab9/Source1.cpp b/Lab_09/Source1.cpp similarity index 100% rename from OOP1-Lab9/Source1.cpp rename to Lab_09/Source1.cpp diff --git a/OOP1-Lab9/Source2.cpp b/Lab_09/Source2.cpp similarity index 100% rename from OOP1-Lab9/Source2.cpp rename to Lab_09/Source2.cpp diff --git a/OOP2_Lab1/README.md b/Lab_10/README.md similarity index 100% rename from OOP2_Lab1/README.md rename to Lab_10/README.md diff --git a/OOP2_Lab1/studentCourseEvaluation.cpp b/Lab_10/studentCourseEvaluation.cpp similarity index 100% rename from OOP2_Lab1/studentCourseEvaluation.cpp rename to Lab_10/studentCourseEvaluation.cpp diff --git a/OOP2_Lab2/README.md b/Lab_11/README.md similarity index 100% rename from OOP2_Lab2/README.md rename to Lab_11/README.md diff --git a/OOP2_Lab2/Source.cpp b/Lab_11/Source.cpp similarity index 100% rename from OOP2_Lab2/Source.cpp rename to Lab_11/Source.cpp diff --git a/OOP2_Lab3/README.md b/Lab_12/README.md similarity index 100% rename from OOP2_Lab3/README.md rename to Lab_12/README.md diff --git a/OOP2_Lab3/main.cpp b/Lab_12/main.cpp similarity index 100% rename from OOP2_Lab3/main.cpp rename to Lab_12/main.cpp diff --git a/OOP2_Lab4/README.md b/Lab_13/README.md similarity index 100% rename from OOP2_Lab4/README.md rename to Lab_13/README.md diff --git a/OOP2_Lab4/main1.cpp b/Lab_13/main1.cpp similarity index 100% rename from OOP2_Lab4/main1.cpp rename to Lab_13/main1.cpp diff --git a/OOP2_Lab5/README.md b/Lab_14/README.md similarity index 100% rename from OOP2_Lab5/README.md rename to Lab_14/README.md diff --git a/OOP2_Lab5/Source.cpp b/Lab_14/Source.cpp similarity index 100% rename from OOP2_Lab5/Source.cpp rename to Lab_14/Source.cpp diff --git a/OOP2_Lab6/README.md b/Lab_15/README.md similarity index 100% rename from OOP2_Lab6/README.md rename to Lab_15/README.md diff --git a/OOP2_Lab6/Source.cpp b/Lab_15/Source.cpp similarity index 100% rename from OOP2_Lab6/Source.cpp rename to Lab_15/Source.cpp diff --git a/OOP2_Lab7/README.docx b/Lab_16/README.docx similarity index 100% rename from OOP2_Lab7/README.docx rename to Lab_16/README.docx diff --git a/OOP2_Lab7/Source.cpp b/Lab_16/Source.cpp similarity index 100% rename from OOP2_Lab7/Source.cpp rename to Lab_16/Source.cpp diff --git a/OOP2_Lab7_Extra/Activity-1.docx b/Lab_17/Activity-1.docx similarity index 100% rename from OOP2_Lab7_Extra/Activity-1.docx rename to Lab_17/Activity-1.docx diff --git a/OOP2_Lab7_Extra/Education.cpp b/Lab_17/Education.cpp similarity index 100% rename from OOP2_Lab7_Extra/Education.cpp rename to Lab_17/Education.cpp diff --git a/OOP2_Lab8/README.md b/Lab_18/README.md similarity index 100% rename from OOP2_Lab8/README.md rename to Lab_18/README.md diff --git a/OOP2_Lab8/main.cpp b/Lab_18/main.cpp similarity index 100% rename from OOP2_Lab8/main.cpp rename to Lab_18/main.cpp diff --git a/OOP2_Lab9/README.md b/Lab_19/README.md similarity index 100% rename from OOP2_Lab9/README.md rename to Lab_19/README.md diff --git a/OOP2_Lab9/contacts.txt b/Lab_19/contacts.txt similarity index 100% rename from OOP2_Lab9/contacts.txt rename to Lab_19/contacts.txt diff --git a/OOP2_Lab9/main.cpp b/Lab_19/main.cpp similarity index 100% rename from OOP2_Lab9/main.cpp rename to Lab_19/main.cpp diff --git a/OOP2_Lab9/numbers.txt b/Lab_19/numbers.txt similarity index 100% rename from OOP2_Lab9/numbers.txt rename to Lab_19/numbers.txt diff --git a/OOP2_Lab9/one.txt b/Lab_19/one.txt similarity index 100% rename from OOP2_Lab9/one.txt rename to Lab_19/one.txt diff --git a/OOP2_Lab9/total.txt b/Lab_19/total.txt similarity index 100% rename from OOP2_Lab9/total.txt rename to Lab_19/total.txt diff --git a/OOP2_Lab9/two.txt b/Lab_19/two.txt similarity index 100% rename from OOP2_Lab9/two.txt rename to Lab_19/two.txt diff --git a/OOP2_Lab10/Person.cpp b/Lab_20/Person.cpp similarity index 100% rename from OOP2_Lab10/Person.cpp rename to Lab_20/Person.cpp diff --git a/OOP2_Lab10/README.md b/Lab_20/README.md similarity index 100% rename from OOP2_Lab10/README.md rename to Lab_20/README.md diff --git a/OOP2_Lab10/contacts b/Lab_20/contacts similarity index 100% rename from OOP2_Lab10/contacts rename to Lab_20/contacts diff --git a/OOP2-FA/city_temperature_control.cpp b/Lab_21/city_temperature_control.cpp similarity index 100% rename from OOP2-FA/city_temperature_control.cpp rename to Lab_21/city_temperature_control.cpp diff --git a/OOP2-FA/e-commerce.cpp b/Lab_21/e-commerce.cpp similarity index 100% rename from OOP2-FA/e-commerce.cpp rename to Lab_21/e-commerce.cpp diff --git a/Bank management system/Header.h b/Project_Bank_Management_System/Header.h similarity index 100% rename from Bank management system/Header.h rename to Project_Bank_Management_System/Header.h diff --git a/Bank management system/Project3.exe b/Project_Bank_Management_System/Project3.exe similarity index 100% rename from Bank management system/Project3.exe rename to Project_Bank_Management_System/Project3.exe diff --git a/Bank management system/data.txt b/Project_Bank_Management_System/data.txt similarity index 100% rename from Bank management system/data.txt rename to Project_Bank_Management_System/data.txt diff --git a/Bank management system/main.cpp b/Project_Bank_Management_System/main.cpp similarity index 100% rename from Bank management system/main.cpp rename to Project_Bank_Management_System/main.cpp diff --git a/E-Commerce App V1.0/BreadBakery.h b/Project_E-Commerce_App_V1.0/BreadBakery.h similarity index 100% rename from E-Commerce App V1.0/BreadBakery.h rename to Project_E-Commerce_App_V1.0/BreadBakery.h diff --git a/E-Commerce App V1.0/Header.h b/Project_E-Commerce_App_V1.0/Header.h similarity index 100% rename from E-Commerce App V1.0/Header.h rename to Project_E-Commerce_App_V1.0/Header.h diff --git a/E-Commerce App V1.0/Loading.h b/Project_E-Commerce_App_V1.0/Loading.h similarity index 100% rename from E-Commerce App V1.0/Loading.h rename to Project_E-Commerce_App_V1.0/Loading.h diff --git a/E-Commerce App V1.0/Vegetables.h b/Project_E-Commerce_App_V1.0/Vegetables.h similarity index 100% rename from E-Commerce App V1.0/Vegetables.h rename to Project_E-Commerce_App_V1.0/Vegetables.h diff --git a/E-Commerce App V1.0/Water.h b/Project_E-Commerce_App_V1.0/Water.h similarity index 100% rename from E-Commerce App V1.0/Water.h rename to Project_E-Commerce_App_V1.0/Water.h diff --git a/E-Commerce App V1.0/main.cpp b/Project_E-Commerce_App_V1.0/main.cpp similarity index 100% rename from E-Commerce App V1.0/main.cpp rename to Project_E-Commerce_App_V1.0/main.cpp diff --git a/E-Commerce App V2.0/Loading_Page.h b/Project_E-Commerce_App_V2.0/Loading_Page.h similarity index 100% rename from E-Commerce App V2.0/Loading_Page.h rename to Project_E-Commerce_App_V2.0/Loading_Page.h diff --git a/E-Commerce App V2.0/Person.h b/Project_E-Commerce_App_V2.0/Person.h similarity index 100% rename from E-Commerce App V2.0/Person.h rename to Project_E-Commerce_App_V2.0/Person.h diff --git a/E-Commerce App V2.0/Products.h b/Project_E-Commerce_App_V2.0/Products.h similarity index 100% rename from E-Commerce App V2.0/Products.h rename to Project_E-Commerce_App_V2.0/Products.h diff --git a/E-Commerce App V2.0/User_Info.txt b/Project_E-Commerce_App_V2.0/User_Info.txt similarity index 100% rename from E-Commerce App V2.0/User_Info.txt rename to Project_E-Commerce_App_V2.0/User_Info.txt diff --git a/E-Commerce App V2.0/Validation.h b/Project_E-Commerce_App_V2.0/Validation.h similarity index 100% rename from E-Commerce App V2.0/Validation.h rename to Project_E-Commerce_App_V2.0/Validation.h diff --git a/E-Commerce App V2.0/main.cpp b/Project_E-Commerce_App_V2.0/main.cpp similarity index 100% rename from E-Commerce App V2.0/main.cpp rename to Project_E-Commerce_App_V2.0/main.cpp diff --git a/E-Commerce App V2.0/screenshots/authentication.png b/Project_E-Commerce_App_V2.0/screenshots/authentication.png similarity index 100% rename from E-Commerce App V2.0/screenshots/authentication.png rename to Project_E-Commerce_App_V2.0/screenshots/authentication.png diff --git a/E-Commerce App V2.0/screenshots/authorization.png b/Project_E-Commerce_App_V2.0/screenshots/authorization.png similarity index 100% rename from E-Commerce App V2.0/screenshots/authorization.png rename to Project_E-Commerce_App_V2.0/screenshots/authorization.png diff --git a/E-Commerce App V2.0/screenshots/loading.png b/Project_E-Commerce_App_V2.0/screenshots/loading.png similarity index 100% rename from E-Commerce App V2.0/screenshots/loading.png rename to Project_E-Commerce_App_V2.0/screenshots/loading.png diff --git a/E-Commerce App V2.0/screenshots/menu.png b/Project_E-Commerce_App_V2.0/screenshots/menu.png similarity index 100% rename from E-Commerce App V2.0/screenshots/menu.png rename to Project_E-Commerce_App_V2.0/screenshots/menu.png diff --git a/E-Commerce App V2.0/screenshots/product list.png b/Project_E-Commerce_App_V2.0/screenshots/product list.png similarity index 100% rename from E-Commerce App V2.0/screenshots/product list.png rename to Project_E-Commerce_App_V2.0/screenshots/product list.png diff --git a/E-Commerce App V3.0/Loading_Page.h b/Project_E-Commerce_App_V3.0/Loading_Page.h similarity index 100% rename from E-Commerce App V3.0/Loading_Page.h rename to Project_E-Commerce_App_V3.0/Loading_Page.h diff --git a/E-Commerce App V3.0/Password_Vali_Asterisk.h b/Project_E-Commerce_App_V3.0/Password_Vali_Asterisk.h similarity index 100% rename from E-Commerce App V3.0/Password_Vali_Asterisk.h rename to Project_E-Commerce_App_V3.0/Password_Vali_Asterisk.h diff --git a/E-Commerce App V3.0/Person.h b/Project_E-Commerce_App_V3.0/Person.h similarity index 100% rename from E-Commerce App V3.0/Person.h rename to Project_E-Commerce_App_V3.0/Person.h diff --git a/E-Commerce App V3.0/Products.h b/Project_E-Commerce_App_V3.0/Products.h similarity index 100% rename from E-Commerce App V3.0/Products.h rename to Project_E-Commerce_App_V3.0/Products.h diff --git a/E-Commerce App V3.0/User_Info.txt b/Project_E-Commerce_App_V3.0/User_Info.txt similarity index 100% rename from E-Commerce App V3.0/User_Info.txt rename to Project_E-Commerce_App_V3.0/User_Info.txt diff --git a/E-Commerce App V3.0/Validation.h b/Project_E-Commerce_App_V3.0/Validation.h similarity index 100% rename from E-Commerce App V3.0/Validation.h rename to Project_E-Commerce_App_V3.0/Validation.h diff --git a/E-Commerce App V3.0/main.cpp b/Project_E-Commerce_App_V3.0/main.cpp similarity index 100% rename from E-Commerce App V3.0/main.cpp rename to Project_E-Commerce_App_V3.0/main.cpp diff --git a/E-Commerce App V3.0/screenshots/authentication.png b/Project_E-Commerce_App_V3.0/screenshots/authentication.png similarity index 100% rename from E-Commerce App V3.0/screenshots/authentication.png rename to Project_E-Commerce_App_V3.0/screenshots/authentication.png diff --git a/E-Commerce App V3.0/screenshots/authorization.png b/Project_E-Commerce_App_V3.0/screenshots/authorization.png similarity index 100% rename from E-Commerce App V3.0/screenshots/authorization.png rename to Project_E-Commerce_App_V3.0/screenshots/authorization.png diff --git a/E-Commerce App V3.0/screenshots/loading.png b/Project_E-Commerce_App_V3.0/screenshots/loading.png similarity index 100% rename from E-Commerce App V3.0/screenshots/loading.png rename to Project_E-Commerce_App_V3.0/screenshots/loading.png diff --git a/E-Commerce App V3.0/screenshots/menu.png b/Project_E-Commerce_App_V3.0/screenshots/menu.png similarity index 100% rename from E-Commerce App V3.0/screenshots/menu.png rename to Project_E-Commerce_App_V3.0/screenshots/menu.png diff --git a/E-Commerce App V3.0/screenshots/product list.png b/Project_E-Commerce_App_V3.0/screenshots/product list.png similarity index 100% rename from E-Commerce App V3.0/screenshots/product list.png rename to Project_E-Commerce_App_V3.0/screenshots/product list.png diff --git a/Labirint Game/olaf-game.cpp b/Project_Labirint_Game/olaf-game.cpp similarity index 100% rename from Labirint Game/olaf-game.cpp rename to Project_Labirint_Game/olaf-game.cpp diff --git a/Labirint Game/sfml/bin/openal32.dll b/Project_Labirint_Game/sfml/bin/openal32.dll similarity index 100% rename from Labirint Game/sfml/bin/openal32.dll rename to Project_Labirint_Game/sfml/bin/openal32.dll diff --git a/Labirint Game/sfml/bin/sfml-audio-2.dll b/Project_Labirint_Game/sfml/bin/sfml-audio-2.dll similarity index 100% rename from Labirint Game/sfml/bin/sfml-audio-2.dll rename to Project_Labirint_Game/sfml/bin/sfml-audio-2.dll diff --git a/Labirint Game/sfml/bin/sfml-audio-d-2.dll b/Project_Labirint_Game/sfml/bin/sfml-audio-d-2.dll similarity index 100% rename from Labirint Game/sfml/bin/sfml-audio-d-2.dll rename to Project_Labirint_Game/sfml/bin/sfml-audio-d-2.dll diff --git a/Labirint Game/sfml/bin/sfml-graphics-2.dll b/Project_Labirint_Game/sfml/bin/sfml-graphics-2.dll similarity index 100% rename from Labirint Game/sfml/bin/sfml-graphics-2.dll rename to Project_Labirint_Game/sfml/bin/sfml-graphics-2.dll diff --git a/Labirint Game/sfml/bin/sfml-graphics-d-2.dll b/Project_Labirint_Game/sfml/bin/sfml-graphics-d-2.dll similarity index 100% rename from Labirint Game/sfml/bin/sfml-graphics-d-2.dll rename to Project_Labirint_Game/sfml/bin/sfml-graphics-d-2.dll diff --git a/Labirint Game/sfml/bin/sfml-network-2.dll b/Project_Labirint_Game/sfml/bin/sfml-network-2.dll similarity index 100% rename from Labirint Game/sfml/bin/sfml-network-2.dll rename to Project_Labirint_Game/sfml/bin/sfml-network-2.dll diff --git a/Labirint Game/sfml/bin/sfml-network-d-2.dll b/Project_Labirint_Game/sfml/bin/sfml-network-d-2.dll similarity index 100% rename from Labirint Game/sfml/bin/sfml-network-d-2.dll rename to Project_Labirint_Game/sfml/bin/sfml-network-d-2.dll diff --git a/Labirint Game/sfml/bin/sfml-system-2.dll b/Project_Labirint_Game/sfml/bin/sfml-system-2.dll similarity index 100% rename from Labirint Game/sfml/bin/sfml-system-2.dll rename to Project_Labirint_Game/sfml/bin/sfml-system-2.dll diff --git a/Labirint Game/sfml/bin/sfml-system-d-2.dll b/Project_Labirint_Game/sfml/bin/sfml-system-d-2.dll similarity index 100% rename from Labirint Game/sfml/bin/sfml-system-d-2.dll rename to Project_Labirint_Game/sfml/bin/sfml-system-d-2.dll diff --git a/Labirint Game/sfml/bin/sfml-window-2.dll b/Project_Labirint_Game/sfml/bin/sfml-window-2.dll similarity index 100% rename from Labirint Game/sfml/bin/sfml-window-2.dll rename to Project_Labirint_Game/sfml/bin/sfml-window-2.dll diff --git a/Labirint Game/sfml/bin/sfml-window-d-2.dll b/Project_Labirint_Game/sfml/bin/sfml-window-d-2.dll similarity index 100% rename from Labirint Game/sfml/bin/sfml-window-d-2.dll rename to Project_Labirint_Game/sfml/bin/sfml-window-d-2.dll diff --git a/Labirint Game/sfml/include/SFML/Audio.hpp b/Project_Labirint_Game/sfml/include/SFML/Audio.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Audio.hpp rename to Project_Labirint_Game/sfml/include/SFML/Audio.hpp diff --git a/Labirint Game/sfml/include/SFML/Audio/AlResource.hpp b/Project_Labirint_Game/sfml/include/SFML/Audio/AlResource.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Audio/AlResource.hpp rename to Project_Labirint_Game/sfml/include/SFML/Audio/AlResource.hpp diff --git a/Labirint Game/sfml/include/SFML/Audio/Export.hpp b/Project_Labirint_Game/sfml/include/SFML/Audio/Export.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Audio/Export.hpp rename to Project_Labirint_Game/sfml/include/SFML/Audio/Export.hpp diff --git a/Labirint Game/sfml/include/SFML/Audio/InputSoundFile.hpp b/Project_Labirint_Game/sfml/include/SFML/Audio/InputSoundFile.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Audio/InputSoundFile.hpp rename to Project_Labirint_Game/sfml/include/SFML/Audio/InputSoundFile.hpp diff --git a/Labirint Game/sfml/include/SFML/Audio/Listener.hpp b/Project_Labirint_Game/sfml/include/SFML/Audio/Listener.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Audio/Listener.hpp rename to Project_Labirint_Game/sfml/include/SFML/Audio/Listener.hpp diff --git a/Labirint Game/sfml/include/SFML/Audio/Music.hpp b/Project_Labirint_Game/sfml/include/SFML/Audio/Music.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Audio/Music.hpp rename to Project_Labirint_Game/sfml/include/SFML/Audio/Music.hpp diff --git a/Labirint Game/sfml/include/SFML/Audio/OutputSoundFile.hpp b/Project_Labirint_Game/sfml/include/SFML/Audio/OutputSoundFile.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Audio/OutputSoundFile.hpp rename to Project_Labirint_Game/sfml/include/SFML/Audio/OutputSoundFile.hpp diff --git a/Labirint Game/sfml/include/SFML/Audio/Sound.hpp b/Project_Labirint_Game/sfml/include/SFML/Audio/Sound.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Audio/Sound.hpp rename to Project_Labirint_Game/sfml/include/SFML/Audio/Sound.hpp diff --git a/Labirint Game/sfml/include/SFML/Audio/SoundBuffer.hpp b/Project_Labirint_Game/sfml/include/SFML/Audio/SoundBuffer.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Audio/SoundBuffer.hpp rename to Project_Labirint_Game/sfml/include/SFML/Audio/SoundBuffer.hpp diff --git a/Labirint Game/sfml/include/SFML/Audio/SoundBufferRecorder.hpp b/Project_Labirint_Game/sfml/include/SFML/Audio/SoundBufferRecorder.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Audio/SoundBufferRecorder.hpp rename to Project_Labirint_Game/sfml/include/SFML/Audio/SoundBufferRecorder.hpp diff --git a/Labirint Game/sfml/include/SFML/Audio/SoundFileFactory.hpp b/Project_Labirint_Game/sfml/include/SFML/Audio/SoundFileFactory.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Audio/SoundFileFactory.hpp rename to Project_Labirint_Game/sfml/include/SFML/Audio/SoundFileFactory.hpp diff --git a/Labirint Game/sfml/include/SFML/Audio/SoundFileFactory.inl b/Project_Labirint_Game/sfml/include/SFML/Audio/SoundFileFactory.inl similarity index 100% rename from Labirint Game/sfml/include/SFML/Audio/SoundFileFactory.inl rename to Project_Labirint_Game/sfml/include/SFML/Audio/SoundFileFactory.inl diff --git a/Labirint Game/sfml/include/SFML/Audio/SoundFileReader.hpp b/Project_Labirint_Game/sfml/include/SFML/Audio/SoundFileReader.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Audio/SoundFileReader.hpp rename to Project_Labirint_Game/sfml/include/SFML/Audio/SoundFileReader.hpp diff --git a/Labirint Game/sfml/include/SFML/Audio/SoundFileWriter.hpp b/Project_Labirint_Game/sfml/include/SFML/Audio/SoundFileWriter.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Audio/SoundFileWriter.hpp rename to Project_Labirint_Game/sfml/include/SFML/Audio/SoundFileWriter.hpp diff --git a/Labirint Game/sfml/include/SFML/Audio/SoundRecorder.hpp b/Project_Labirint_Game/sfml/include/SFML/Audio/SoundRecorder.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Audio/SoundRecorder.hpp rename to Project_Labirint_Game/sfml/include/SFML/Audio/SoundRecorder.hpp diff --git a/Labirint Game/sfml/include/SFML/Audio/SoundSource.hpp b/Project_Labirint_Game/sfml/include/SFML/Audio/SoundSource.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Audio/SoundSource.hpp rename to Project_Labirint_Game/sfml/include/SFML/Audio/SoundSource.hpp diff --git a/Labirint Game/sfml/include/SFML/Audio/SoundStream.hpp b/Project_Labirint_Game/sfml/include/SFML/Audio/SoundStream.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Audio/SoundStream.hpp rename to Project_Labirint_Game/sfml/include/SFML/Audio/SoundStream.hpp diff --git a/Labirint Game/sfml/include/SFML/Config.hpp b/Project_Labirint_Game/sfml/include/SFML/Config.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Config.hpp rename to Project_Labirint_Game/sfml/include/SFML/Config.hpp diff --git a/Labirint Game/sfml/include/SFML/GpuPreference.hpp b/Project_Labirint_Game/sfml/include/SFML/GpuPreference.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/GpuPreference.hpp rename to Project_Labirint_Game/sfml/include/SFML/GpuPreference.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/BlendMode.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/BlendMode.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/BlendMode.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/BlendMode.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/CircleShape.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/CircleShape.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/CircleShape.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/CircleShape.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/Color.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/Color.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/Color.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/Color.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/ConvexShape.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/ConvexShape.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/ConvexShape.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/ConvexShape.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/Drawable.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/Drawable.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/Drawable.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/Drawable.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/Export.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/Export.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/Export.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/Export.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/Font.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/Font.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/Font.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/Font.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/Glsl.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/Glsl.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/Glsl.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/Glsl.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/Glsl.inl b/Project_Labirint_Game/sfml/include/SFML/Graphics/Glsl.inl similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/Glsl.inl rename to Project_Labirint_Game/sfml/include/SFML/Graphics/Glsl.inl diff --git a/Labirint Game/sfml/include/SFML/Graphics/Glyph.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/Glyph.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/Glyph.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/Glyph.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/Image.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/Image.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/Image.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/Image.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/PrimitiveType.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/PrimitiveType.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/PrimitiveType.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/PrimitiveType.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/Rect.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/Rect.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/Rect.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/Rect.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/Rect.inl b/Project_Labirint_Game/sfml/include/SFML/Graphics/Rect.inl similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/Rect.inl rename to Project_Labirint_Game/sfml/include/SFML/Graphics/Rect.inl diff --git a/Labirint Game/sfml/include/SFML/Graphics/RectangleShape.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/RectangleShape.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/RectangleShape.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/RectangleShape.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/RenderStates.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/RenderStates.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/RenderStates.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/RenderStates.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/RenderTarget.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/RenderTarget.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/RenderTarget.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/RenderTarget.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/RenderTexture.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/RenderTexture.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/RenderTexture.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/RenderTexture.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/RenderWindow.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/RenderWindow.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/RenderWindow.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/RenderWindow.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/Shader.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/Shader.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/Shader.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/Shader.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/Shape.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/Shape.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/Shape.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/Shape.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/Sprite.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/Sprite.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/Sprite.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/Sprite.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/Text.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/Text.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/Text.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/Text.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/Texture.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/Texture.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/Texture.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/Texture.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/Transform.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/Transform.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/Transform.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/Transform.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/Transformable.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/Transformable.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/Transformable.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/Transformable.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/Vertex.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/Vertex.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/Vertex.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/Vertex.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/VertexArray.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/VertexArray.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/VertexArray.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/VertexArray.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/VertexBuffer.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/VertexBuffer.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/VertexBuffer.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/VertexBuffer.hpp diff --git a/Labirint Game/sfml/include/SFML/Graphics/View.hpp b/Project_Labirint_Game/sfml/include/SFML/Graphics/View.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Graphics/View.hpp rename to Project_Labirint_Game/sfml/include/SFML/Graphics/View.hpp diff --git a/Labirint Game/sfml/include/SFML/Main.hpp b/Project_Labirint_Game/sfml/include/SFML/Main.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Main.hpp rename to Project_Labirint_Game/sfml/include/SFML/Main.hpp diff --git a/Labirint Game/sfml/include/SFML/Network.hpp b/Project_Labirint_Game/sfml/include/SFML/Network.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Network.hpp rename to Project_Labirint_Game/sfml/include/SFML/Network.hpp diff --git a/Labirint Game/sfml/include/SFML/Network/Export.hpp b/Project_Labirint_Game/sfml/include/SFML/Network/Export.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Network/Export.hpp rename to Project_Labirint_Game/sfml/include/SFML/Network/Export.hpp diff --git a/Labirint Game/sfml/include/SFML/Network/Ftp.hpp b/Project_Labirint_Game/sfml/include/SFML/Network/Ftp.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Network/Ftp.hpp rename to Project_Labirint_Game/sfml/include/SFML/Network/Ftp.hpp diff --git a/Labirint Game/sfml/include/SFML/Network/Http.hpp b/Project_Labirint_Game/sfml/include/SFML/Network/Http.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Network/Http.hpp rename to Project_Labirint_Game/sfml/include/SFML/Network/Http.hpp diff --git a/Labirint Game/sfml/include/SFML/Network/IpAddress.hpp b/Project_Labirint_Game/sfml/include/SFML/Network/IpAddress.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Network/IpAddress.hpp rename to Project_Labirint_Game/sfml/include/SFML/Network/IpAddress.hpp diff --git a/Labirint Game/sfml/include/SFML/Network/Packet.hpp b/Project_Labirint_Game/sfml/include/SFML/Network/Packet.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Network/Packet.hpp rename to Project_Labirint_Game/sfml/include/SFML/Network/Packet.hpp diff --git a/Labirint Game/sfml/include/SFML/Network/Socket.hpp b/Project_Labirint_Game/sfml/include/SFML/Network/Socket.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Network/Socket.hpp rename to Project_Labirint_Game/sfml/include/SFML/Network/Socket.hpp diff --git a/Labirint Game/sfml/include/SFML/Network/SocketHandle.hpp b/Project_Labirint_Game/sfml/include/SFML/Network/SocketHandle.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Network/SocketHandle.hpp rename to Project_Labirint_Game/sfml/include/SFML/Network/SocketHandle.hpp diff --git a/Labirint Game/sfml/include/SFML/Network/SocketSelector.hpp b/Project_Labirint_Game/sfml/include/SFML/Network/SocketSelector.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Network/SocketSelector.hpp rename to Project_Labirint_Game/sfml/include/SFML/Network/SocketSelector.hpp diff --git a/Labirint Game/sfml/include/SFML/Network/TcpListener.hpp b/Project_Labirint_Game/sfml/include/SFML/Network/TcpListener.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Network/TcpListener.hpp rename to Project_Labirint_Game/sfml/include/SFML/Network/TcpListener.hpp diff --git a/Labirint Game/sfml/include/SFML/Network/TcpSocket.hpp b/Project_Labirint_Game/sfml/include/SFML/Network/TcpSocket.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Network/TcpSocket.hpp rename to Project_Labirint_Game/sfml/include/SFML/Network/TcpSocket.hpp diff --git a/Labirint Game/sfml/include/SFML/Network/UdpSocket.hpp b/Project_Labirint_Game/sfml/include/SFML/Network/UdpSocket.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Network/UdpSocket.hpp rename to Project_Labirint_Game/sfml/include/SFML/Network/UdpSocket.hpp diff --git a/Labirint Game/sfml/include/SFML/OpenGL.hpp b/Project_Labirint_Game/sfml/include/SFML/OpenGL.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/OpenGL.hpp rename to Project_Labirint_Game/sfml/include/SFML/OpenGL.hpp diff --git a/Labirint Game/sfml/include/SFML/System.hpp b/Project_Labirint_Game/sfml/include/SFML/System.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/System.hpp rename to Project_Labirint_Game/sfml/include/SFML/System.hpp diff --git a/Labirint Game/sfml/include/SFML/System/Clock.hpp b/Project_Labirint_Game/sfml/include/SFML/System/Clock.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/System/Clock.hpp rename to Project_Labirint_Game/sfml/include/SFML/System/Clock.hpp diff --git a/Labirint Game/sfml/include/SFML/System/Err.hpp b/Project_Labirint_Game/sfml/include/SFML/System/Err.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/System/Err.hpp rename to Project_Labirint_Game/sfml/include/SFML/System/Err.hpp diff --git a/Labirint Game/sfml/include/SFML/System/Export.hpp b/Project_Labirint_Game/sfml/include/SFML/System/Export.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/System/Export.hpp rename to Project_Labirint_Game/sfml/include/SFML/System/Export.hpp diff --git a/Labirint Game/sfml/include/SFML/System/FileInputStream.hpp b/Project_Labirint_Game/sfml/include/SFML/System/FileInputStream.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/System/FileInputStream.hpp rename to Project_Labirint_Game/sfml/include/SFML/System/FileInputStream.hpp diff --git a/Labirint Game/sfml/include/SFML/System/InputStream.hpp b/Project_Labirint_Game/sfml/include/SFML/System/InputStream.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/System/InputStream.hpp rename to Project_Labirint_Game/sfml/include/SFML/System/InputStream.hpp diff --git a/Labirint Game/sfml/include/SFML/System/Lock.hpp b/Project_Labirint_Game/sfml/include/SFML/System/Lock.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/System/Lock.hpp rename to Project_Labirint_Game/sfml/include/SFML/System/Lock.hpp diff --git a/Labirint Game/sfml/include/SFML/System/MemoryInputStream.hpp b/Project_Labirint_Game/sfml/include/SFML/System/MemoryInputStream.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/System/MemoryInputStream.hpp rename to Project_Labirint_Game/sfml/include/SFML/System/MemoryInputStream.hpp diff --git a/Labirint Game/sfml/include/SFML/System/Mutex.hpp b/Project_Labirint_Game/sfml/include/SFML/System/Mutex.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/System/Mutex.hpp rename to Project_Labirint_Game/sfml/include/SFML/System/Mutex.hpp diff --git a/Labirint Game/sfml/include/SFML/System/NativeActivity.hpp b/Project_Labirint_Game/sfml/include/SFML/System/NativeActivity.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/System/NativeActivity.hpp rename to Project_Labirint_Game/sfml/include/SFML/System/NativeActivity.hpp diff --git a/Labirint Game/sfml/include/SFML/System/NonCopyable.hpp b/Project_Labirint_Game/sfml/include/SFML/System/NonCopyable.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/System/NonCopyable.hpp rename to Project_Labirint_Game/sfml/include/SFML/System/NonCopyable.hpp diff --git a/Labirint Game/sfml/include/SFML/System/Sleep.hpp b/Project_Labirint_Game/sfml/include/SFML/System/Sleep.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/System/Sleep.hpp rename to Project_Labirint_Game/sfml/include/SFML/System/Sleep.hpp diff --git a/Labirint Game/sfml/include/SFML/System/String.hpp b/Project_Labirint_Game/sfml/include/SFML/System/String.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/System/String.hpp rename to Project_Labirint_Game/sfml/include/SFML/System/String.hpp diff --git a/Labirint Game/sfml/include/SFML/System/String.inl b/Project_Labirint_Game/sfml/include/SFML/System/String.inl similarity index 100% rename from Labirint Game/sfml/include/SFML/System/String.inl rename to Project_Labirint_Game/sfml/include/SFML/System/String.inl diff --git a/Labirint Game/sfml/include/SFML/System/Thread.hpp b/Project_Labirint_Game/sfml/include/SFML/System/Thread.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/System/Thread.hpp rename to Project_Labirint_Game/sfml/include/SFML/System/Thread.hpp diff --git a/Labirint Game/sfml/include/SFML/System/Thread.inl b/Project_Labirint_Game/sfml/include/SFML/System/Thread.inl similarity index 100% rename from Labirint Game/sfml/include/SFML/System/Thread.inl rename to Project_Labirint_Game/sfml/include/SFML/System/Thread.inl diff --git a/Labirint Game/sfml/include/SFML/System/ThreadLocal.hpp b/Project_Labirint_Game/sfml/include/SFML/System/ThreadLocal.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/System/ThreadLocal.hpp rename to Project_Labirint_Game/sfml/include/SFML/System/ThreadLocal.hpp diff --git a/Labirint Game/sfml/include/SFML/System/ThreadLocalPtr.hpp b/Project_Labirint_Game/sfml/include/SFML/System/ThreadLocalPtr.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/System/ThreadLocalPtr.hpp rename to Project_Labirint_Game/sfml/include/SFML/System/ThreadLocalPtr.hpp diff --git a/Labirint Game/sfml/include/SFML/System/ThreadLocalPtr.inl b/Project_Labirint_Game/sfml/include/SFML/System/ThreadLocalPtr.inl similarity index 100% rename from Labirint Game/sfml/include/SFML/System/ThreadLocalPtr.inl rename to Project_Labirint_Game/sfml/include/SFML/System/ThreadLocalPtr.inl diff --git a/Labirint Game/sfml/include/SFML/System/Time.hpp b/Project_Labirint_Game/sfml/include/SFML/System/Time.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/System/Time.hpp rename to Project_Labirint_Game/sfml/include/SFML/System/Time.hpp diff --git a/Labirint Game/sfml/include/SFML/System/Utf.hpp b/Project_Labirint_Game/sfml/include/SFML/System/Utf.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/System/Utf.hpp rename to Project_Labirint_Game/sfml/include/SFML/System/Utf.hpp diff --git a/Labirint Game/sfml/include/SFML/System/Utf.inl b/Project_Labirint_Game/sfml/include/SFML/System/Utf.inl similarity index 100% rename from Labirint Game/sfml/include/SFML/System/Utf.inl rename to Project_Labirint_Game/sfml/include/SFML/System/Utf.inl diff --git a/Labirint Game/sfml/include/SFML/System/Vector2.hpp b/Project_Labirint_Game/sfml/include/SFML/System/Vector2.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/System/Vector2.hpp rename to Project_Labirint_Game/sfml/include/SFML/System/Vector2.hpp diff --git a/Labirint Game/sfml/include/SFML/System/Vector2.inl b/Project_Labirint_Game/sfml/include/SFML/System/Vector2.inl similarity index 100% rename from Labirint Game/sfml/include/SFML/System/Vector2.inl rename to Project_Labirint_Game/sfml/include/SFML/System/Vector2.inl diff --git a/Labirint Game/sfml/include/SFML/System/Vector3.hpp b/Project_Labirint_Game/sfml/include/SFML/System/Vector3.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/System/Vector3.hpp rename to Project_Labirint_Game/sfml/include/SFML/System/Vector3.hpp diff --git a/Labirint Game/sfml/include/SFML/System/Vector3.inl b/Project_Labirint_Game/sfml/include/SFML/System/Vector3.inl similarity index 100% rename from Labirint Game/sfml/include/SFML/System/Vector3.inl rename to Project_Labirint_Game/sfml/include/SFML/System/Vector3.inl diff --git a/Labirint Game/sfml/include/SFML/Window.hpp b/Project_Labirint_Game/sfml/include/SFML/Window.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Window.hpp rename to Project_Labirint_Game/sfml/include/SFML/Window.hpp diff --git a/Labirint Game/sfml/include/SFML/Window/Clipboard.hpp b/Project_Labirint_Game/sfml/include/SFML/Window/Clipboard.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Window/Clipboard.hpp rename to Project_Labirint_Game/sfml/include/SFML/Window/Clipboard.hpp diff --git a/Labirint Game/sfml/include/SFML/Window/Context.hpp b/Project_Labirint_Game/sfml/include/SFML/Window/Context.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Window/Context.hpp rename to Project_Labirint_Game/sfml/include/SFML/Window/Context.hpp diff --git a/Labirint Game/sfml/include/SFML/Window/ContextSettings.hpp b/Project_Labirint_Game/sfml/include/SFML/Window/ContextSettings.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Window/ContextSettings.hpp rename to Project_Labirint_Game/sfml/include/SFML/Window/ContextSettings.hpp diff --git a/Labirint Game/sfml/include/SFML/Window/Cursor.hpp b/Project_Labirint_Game/sfml/include/SFML/Window/Cursor.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Window/Cursor.hpp rename to Project_Labirint_Game/sfml/include/SFML/Window/Cursor.hpp diff --git a/Labirint Game/sfml/include/SFML/Window/Event.hpp b/Project_Labirint_Game/sfml/include/SFML/Window/Event.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Window/Event.hpp rename to Project_Labirint_Game/sfml/include/SFML/Window/Event.hpp diff --git a/Labirint Game/sfml/include/SFML/Window/Export.hpp b/Project_Labirint_Game/sfml/include/SFML/Window/Export.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Window/Export.hpp rename to Project_Labirint_Game/sfml/include/SFML/Window/Export.hpp diff --git a/Labirint Game/sfml/include/SFML/Window/GlResource.hpp b/Project_Labirint_Game/sfml/include/SFML/Window/GlResource.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Window/GlResource.hpp rename to Project_Labirint_Game/sfml/include/SFML/Window/GlResource.hpp diff --git a/Labirint Game/sfml/include/SFML/Window/Joystick.hpp b/Project_Labirint_Game/sfml/include/SFML/Window/Joystick.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Window/Joystick.hpp rename to Project_Labirint_Game/sfml/include/SFML/Window/Joystick.hpp diff --git a/Labirint Game/sfml/include/SFML/Window/Keyboard.hpp b/Project_Labirint_Game/sfml/include/SFML/Window/Keyboard.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Window/Keyboard.hpp rename to Project_Labirint_Game/sfml/include/SFML/Window/Keyboard.hpp diff --git a/Labirint Game/sfml/include/SFML/Window/Mouse.hpp b/Project_Labirint_Game/sfml/include/SFML/Window/Mouse.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Window/Mouse.hpp rename to Project_Labirint_Game/sfml/include/SFML/Window/Mouse.hpp diff --git a/Labirint Game/sfml/include/SFML/Window/Sensor.hpp b/Project_Labirint_Game/sfml/include/SFML/Window/Sensor.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Window/Sensor.hpp rename to Project_Labirint_Game/sfml/include/SFML/Window/Sensor.hpp diff --git a/Labirint Game/sfml/include/SFML/Window/Touch.hpp b/Project_Labirint_Game/sfml/include/SFML/Window/Touch.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Window/Touch.hpp rename to Project_Labirint_Game/sfml/include/SFML/Window/Touch.hpp diff --git a/Labirint Game/sfml/include/SFML/Window/VideoMode.hpp b/Project_Labirint_Game/sfml/include/SFML/Window/VideoMode.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Window/VideoMode.hpp rename to Project_Labirint_Game/sfml/include/SFML/Window/VideoMode.hpp diff --git a/Labirint Game/sfml/include/SFML/Window/Window.hpp b/Project_Labirint_Game/sfml/include/SFML/Window/Window.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Window/Window.hpp rename to Project_Labirint_Game/sfml/include/SFML/Window/Window.hpp diff --git a/Labirint Game/sfml/include/SFML/Window/WindowHandle.hpp b/Project_Labirint_Game/sfml/include/SFML/Window/WindowHandle.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Window/WindowHandle.hpp rename to Project_Labirint_Game/sfml/include/SFML/Window/WindowHandle.hpp diff --git a/Labirint Game/sfml/include/SFML/Window/WindowStyle.hpp b/Project_Labirint_Game/sfml/include/SFML/Window/WindowStyle.hpp similarity index 100% rename from Labirint Game/sfml/include/SFML/Window/WindowStyle.hpp rename to Project_Labirint_Game/sfml/include/SFML/Window/WindowStyle.hpp diff --git a/Labirint Game/sfml/lib/cmake/SFML/SFMLConfig.cmake b/Project_Labirint_Game/sfml/lib/cmake/SFML/SFMLConfig.cmake similarity index 100% rename from Labirint Game/sfml/lib/cmake/SFML/SFMLConfig.cmake rename to Project_Labirint_Game/sfml/lib/cmake/SFML/SFMLConfig.cmake diff --git a/Labirint Game/sfml/lib/cmake/SFML/SFMLConfigDependencies.cmake b/Project_Labirint_Game/sfml/lib/cmake/SFML/SFMLConfigDependencies.cmake similarity index 100% rename from Labirint Game/sfml/lib/cmake/SFML/SFMLConfigDependencies.cmake rename to Project_Labirint_Game/sfml/lib/cmake/SFML/SFMLConfigDependencies.cmake diff --git a/Labirint Game/sfml/lib/cmake/SFML/SFMLConfigVersion.cmake b/Project_Labirint_Game/sfml/lib/cmake/SFML/SFMLConfigVersion.cmake similarity index 100% rename from Labirint Game/sfml/lib/cmake/SFML/SFMLConfigVersion.cmake rename to Project_Labirint_Game/sfml/lib/cmake/SFML/SFMLConfigVersion.cmake diff --git a/Labirint Game/sfml/lib/cmake/SFML/SFMLSharedTargets-debug.cmake b/Project_Labirint_Game/sfml/lib/cmake/SFML/SFMLSharedTargets-debug.cmake similarity index 100% rename from Labirint Game/sfml/lib/cmake/SFML/SFMLSharedTargets-debug.cmake rename to Project_Labirint_Game/sfml/lib/cmake/SFML/SFMLSharedTargets-debug.cmake diff --git a/Labirint Game/sfml/lib/cmake/SFML/SFMLSharedTargets-release.cmake b/Project_Labirint_Game/sfml/lib/cmake/SFML/SFMLSharedTargets-release.cmake similarity index 100% rename from Labirint Game/sfml/lib/cmake/SFML/SFMLSharedTargets-release.cmake rename to Project_Labirint_Game/sfml/lib/cmake/SFML/SFMLSharedTargets-release.cmake diff --git a/Labirint Game/sfml/lib/cmake/SFML/SFMLSharedTargets.cmake b/Project_Labirint_Game/sfml/lib/cmake/SFML/SFMLSharedTargets.cmake similarity index 100% rename from Labirint Game/sfml/lib/cmake/SFML/SFMLSharedTargets.cmake rename to Project_Labirint_Game/sfml/lib/cmake/SFML/SFMLSharedTargets.cmake diff --git a/Labirint Game/sfml/lib/cmake/SFML/SFMLStaticTargets-debug.cmake b/Project_Labirint_Game/sfml/lib/cmake/SFML/SFMLStaticTargets-debug.cmake similarity index 100% rename from Labirint Game/sfml/lib/cmake/SFML/SFMLStaticTargets-debug.cmake rename to Project_Labirint_Game/sfml/lib/cmake/SFML/SFMLStaticTargets-debug.cmake diff --git a/Labirint Game/sfml/lib/cmake/SFML/SFMLStaticTargets-release.cmake b/Project_Labirint_Game/sfml/lib/cmake/SFML/SFMLStaticTargets-release.cmake similarity index 100% rename from Labirint Game/sfml/lib/cmake/SFML/SFMLStaticTargets-release.cmake rename to Project_Labirint_Game/sfml/lib/cmake/SFML/SFMLStaticTargets-release.cmake diff --git a/Labirint Game/sfml/lib/cmake/SFML/SFMLStaticTargets.cmake b/Project_Labirint_Game/sfml/lib/cmake/SFML/SFMLStaticTargets.cmake similarity index 100% rename from Labirint Game/sfml/lib/cmake/SFML/SFMLStaticTargets.cmake rename to Project_Labirint_Game/sfml/lib/cmake/SFML/SFMLStaticTargets.cmake diff --git a/Labirint Game/sfml/lib/flac.lib b/Project_Labirint_Game/sfml/lib/flac.lib similarity index 100% rename from Labirint Game/sfml/lib/flac.lib rename to Project_Labirint_Game/sfml/lib/flac.lib diff --git a/Labirint Game/sfml/lib/freetype.lib b/Project_Labirint_Game/sfml/lib/freetype.lib similarity index 100% rename from Labirint Game/sfml/lib/freetype.lib rename to Project_Labirint_Game/sfml/lib/freetype.lib diff --git a/Labirint Game/sfml/lib/ogg.lib b/Project_Labirint_Game/sfml/lib/ogg.lib similarity index 100% rename from Labirint Game/sfml/lib/ogg.lib rename to Project_Labirint_Game/sfml/lib/ogg.lib diff --git a/Labirint Game/sfml/lib/openal32.lib b/Project_Labirint_Game/sfml/lib/openal32.lib similarity index 100% rename from Labirint Game/sfml/lib/openal32.lib rename to Project_Labirint_Game/sfml/lib/openal32.lib diff --git a/Labirint Game/sfml/lib/sfml-audio-d.lib b/Project_Labirint_Game/sfml/lib/sfml-audio-d.lib similarity index 100% rename from Labirint Game/sfml/lib/sfml-audio-d.lib rename to Project_Labirint_Game/sfml/lib/sfml-audio-d.lib diff --git a/Labirint Game/sfml/lib/sfml-audio-d.pdb b/Project_Labirint_Game/sfml/lib/sfml-audio-d.pdb similarity index 100% rename from Labirint Game/sfml/lib/sfml-audio-d.pdb rename to Project_Labirint_Game/sfml/lib/sfml-audio-d.pdb diff --git a/Labirint Game/sfml/lib/sfml-audio-s-d.lib b/Project_Labirint_Game/sfml/lib/sfml-audio-s-d.lib similarity index 100% rename from Labirint Game/sfml/lib/sfml-audio-s-d.lib rename to Project_Labirint_Game/sfml/lib/sfml-audio-s-d.lib diff --git a/Labirint Game/sfml/lib/sfml-audio-s-d.pdb b/Project_Labirint_Game/sfml/lib/sfml-audio-s-d.pdb similarity index 100% rename from Labirint Game/sfml/lib/sfml-audio-s-d.pdb rename to Project_Labirint_Game/sfml/lib/sfml-audio-s-d.pdb diff --git a/Labirint Game/sfml/lib/sfml-audio-s.lib b/Project_Labirint_Game/sfml/lib/sfml-audio-s.lib similarity index 100% rename from Labirint Game/sfml/lib/sfml-audio-s.lib rename to Project_Labirint_Game/sfml/lib/sfml-audio-s.lib diff --git a/Labirint Game/sfml/lib/sfml-audio.lib b/Project_Labirint_Game/sfml/lib/sfml-audio.lib similarity index 100% rename from Labirint Game/sfml/lib/sfml-audio.lib rename to Project_Labirint_Game/sfml/lib/sfml-audio.lib diff --git a/Labirint Game/sfml/lib/sfml-graphics-d.lib b/Project_Labirint_Game/sfml/lib/sfml-graphics-d.lib similarity index 100% rename from Labirint Game/sfml/lib/sfml-graphics-d.lib rename to Project_Labirint_Game/sfml/lib/sfml-graphics-d.lib diff --git a/Labirint Game/sfml/lib/sfml-graphics-d.pdb b/Project_Labirint_Game/sfml/lib/sfml-graphics-d.pdb similarity index 100% rename from Labirint Game/sfml/lib/sfml-graphics-d.pdb rename to Project_Labirint_Game/sfml/lib/sfml-graphics-d.pdb diff --git a/Labirint Game/sfml/lib/sfml-graphics-s-d.lib b/Project_Labirint_Game/sfml/lib/sfml-graphics-s-d.lib similarity index 100% rename from Labirint Game/sfml/lib/sfml-graphics-s-d.lib rename to Project_Labirint_Game/sfml/lib/sfml-graphics-s-d.lib diff --git a/Labirint Game/sfml/lib/sfml-graphics-s-d.pdb b/Project_Labirint_Game/sfml/lib/sfml-graphics-s-d.pdb similarity index 100% rename from Labirint Game/sfml/lib/sfml-graphics-s-d.pdb rename to Project_Labirint_Game/sfml/lib/sfml-graphics-s-d.pdb diff --git a/Labirint Game/sfml/lib/sfml-graphics-s.lib b/Project_Labirint_Game/sfml/lib/sfml-graphics-s.lib similarity index 100% rename from Labirint Game/sfml/lib/sfml-graphics-s.lib rename to Project_Labirint_Game/sfml/lib/sfml-graphics-s.lib diff --git a/Labirint Game/sfml/lib/sfml-graphics.lib b/Project_Labirint_Game/sfml/lib/sfml-graphics.lib similarity index 100% rename from Labirint Game/sfml/lib/sfml-graphics.lib rename to Project_Labirint_Game/sfml/lib/sfml-graphics.lib diff --git a/Labirint Game/sfml/lib/sfml-main-d.lib b/Project_Labirint_Game/sfml/lib/sfml-main-d.lib similarity index 100% rename from Labirint Game/sfml/lib/sfml-main-d.lib rename to Project_Labirint_Game/sfml/lib/sfml-main-d.lib diff --git a/Labirint Game/sfml/lib/sfml-main-s-d.pdb b/Project_Labirint_Game/sfml/lib/sfml-main-s-d.pdb similarity index 100% rename from Labirint Game/sfml/lib/sfml-main-s-d.pdb rename to Project_Labirint_Game/sfml/lib/sfml-main-s-d.pdb diff --git a/Labirint Game/sfml/lib/sfml-main.lib b/Project_Labirint_Game/sfml/lib/sfml-main.lib similarity index 100% rename from Labirint Game/sfml/lib/sfml-main.lib rename to Project_Labirint_Game/sfml/lib/sfml-main.lib diff --git a/Labirint Game/sfml/lib/sfml-network-d.lib b/Project_Labirint_Game/sfml/lib/sfml-network-d.lib similarity index 100% rename from Labirint Game/sfml/lib/sfml-network-d.lib rename to Project_Labirint_Game/sfml/lib/sfml-network-d.lib diff --git a/Labirint Game/sfml/lib/sfml-network-d.pdb b/Project_Labirint_Game/sfml/lib/sfml-network-d.pdb similarity index 100% rename from Labirint Game/sfml/lib/sfml-network-d.pdb rename to Project_Labirint_Game/sfml/lib/sfml-network-d.pdb diff --git a/Labirint Game/sfml/lib/sfml-network-s-d.lib b/Project_Labirint_Game/sfml/lib/sfml-network-s-d.lib similarity index 100% rename from Labirint Game/sfml/lib/sfml-network-s-d.lib rename to Project_Labirint_Game/sfml/lib/sfml-network-s-d.lib diff --git a/Labirint Game/sfml/lib/sfml-network-s-d.pdb b/Project_Labirint_Game/sfml/lib/sfml-network-s-d.pdb similarity index 100% rename from Labirint Game/sfml/lib/sfml-network-s-d.pdb rename to Project_Labirint_Game/sfml/lib/sfml-network-s-d.pdb diff --git a/Labirint Game/sfml/lib/sfml-network-s.lib b/Project_Labirint_Game/sfml/lib/sfml-network-s.lib similarity index 100% rename from Labirint Game/sfml/lib/sfml-network-s.lib rename to Project_Labirint_Game/sfml/lib/sfml-network-s.lib diff --git a/Labirint Game/sfml/lib/sfml-network.lib b/Project_Labirint_Game/sfml/lib/sfml-network.lib similarity index 100% rename from Labirint Game/sfml/lib/sfml-network.lib rename to Project_Labirint_Game/sfml/lib/sfml-network.lib diff --git a/Labirint Game/sfml/lib/sfml-system-d.lib b/Project_Labirint_Game/sfml/lib/sfml-system-d.lib similarity index 100% rename from Labirint Game/sfml/lib/sfml-system-d.lib rename to Project_Labirint_Game/sfml/lib/sfml-system-d.lib diff --git a/Labirint Game/sfml/lib/sfml-system-d.pdb b/Project_Labirint_Game/sfml/lib/sfml-system-d.pdb similarity index 100% rename from Labirint Game/sfml/lib/sfml-system-d.pdb rename to Project_Labirint_Game/sfml/lib/sfml-system-d.pdb diff --git a/Labirint Game/sfml/lib/sfml-system-s-d.lib b/Project_Labirint_Game/sfml/lib/sfml-system-s-d.lib similarity index 100% rename from Labirint Game/sfml/lib/sfml-system-s-d.lib rename to Project_Labirint_Game/sfml/lib/sfml-system-s-d.lib diff --git a/Labirint Game/sfml/lib/sfml-system-s-d.pdb b/Project_Labirint_Game/sfml/lib/sfml-system-s-d.pdb similarity index 100% rename from Labirint Game/sfml/lib/sfml-system-s-d.pdb rename to Project_Labirint_Game/sfml/lib/sfml-system-s-d.pdb diff --git a/Labirint Game/sfml/lib/sfml-system-s.lib b/Project_Labirint_Game/sfml/lib/sfml-system-s.lib similarity index 100% rename from Labirint Game/sfml/lib/sfml-system-s.lib rename to Project_Labirint_Game/sfml/lib/sfml-system-s.lib diff --git a/Labirint Game/sfml/lib/sfml-system.lib b/Project_Labirint_Game/sfml/lib/sfml-system.lib similarity index 100% rename from Labirint Game/sfml/lib/sfml-system.lib rename to Project_Labirint_Game/sfml/lib/sfml-system.lib diff --git a/Labirint Game/sfml/lib/sfml-window-d.lib b/Project_Labirint_Game/sfml/lib/sfml-window-d.lib similarity index 100% rename from Labirint Game/sfml/lib/sfml-window-d.lib rename to Project_Labirint_Game/sfml/lib/sfml-window-d.lib diff --git a/Labirint Game/sfml/lib/sfml-window-d.pdb b/Project_Labirint_Game/sfml/lib/sfml-window-d.pdb similarity index 100% rename from Labirint Game/sfml/lib/sfml-window-d.pdb rename to Project_Labirint_Game/sfml/lib/sfml-window-d.pdb diff --git a/Labirint Game/sfml/lib/sfml-window-s-d.lib b/Project_Labirint_Game/sfml/lib/sfml-window-s-d.lib similarity index 100% rename from Labirint Game/sfml/lib/sfml-window-s-d.lib rename to Project_Labirint_Game/sfml/lib/sfml-window-s-d.lib diff --git a/Labirint Game/sfml/lib/sfml-window-s-d.pdb b/Project_Labirint_Game/sfml/lib/sfml-window-s-d.pdb similarity index 100% rename from Labirint Game/sfml/lib/sfml-window-s-d.pdb rename to Project_Labirint_Game/sfml/lib/sfml-window-s-d.pdb diff --git a/Labirint Game/sfml/lib/sfml-window-s.lib b/Project_Labirint_Game/sfml/lib/sfml-window-s.lib similarity index 100% rename from Labirint Game/sfml/lib/sfml-window-s.lib rename to Project_Labirint_Game/sfml/lib/sfml-window-s.lib diff --git a/Labirint Game/sfml/lib/sfml-window.lib b/Project_Labirint_Game/sfml/lib/sfml-window.lib similarity index 100% rename from Labirint Game/sfml/lib/sfml-window.lib rename to Project_Labirint_Game/sfml/lib/sfml-window.lib diff --git a/Labirint Game/sfml/lib/vorbis.lib b/Project_Labirint_Game/sfml/lib/vorbis.lib similarity index 100% rename from Labirint Game/sfml/lib/vorbis.lib rename to Project_Labirint_Game/sfml/lib/vorbis.lib diff --git a/Labirint Game/sfml/lib/vorbisenc.lib b/Project_Labirint_Game/sfml/lib/vorbisenc.lib similarity index 100% rename from Labirint Game/sfml/lib/vorbisenc.lib rename to Project_Labirint_Game/sfml/lib/vorbisenc.lib diff --git a/Labirint Game/sfml/lib/vorbisfile.lib b/Project_Labirint_Game/sfml/lib/vorbisfile.lib similarity index 100% rename from Labirint Game/sfml/lib/vorbisfile.lib rename to Project_Labirint_Game/sfml/lib/vorbisfile.lib diff --git a/New Year Congratulation/new_year.cpp b/Project_New_Year_Congratulation/new_year.cpp similarity index 100% rename from New Year Congratulation/new_year.cpp rename to Project_New_Year_Congratulation/new_year.cpp diff --git a/New Year Congratulation/only_numbers.cpp b/Project_New_Year_Congratulation/only_numbers.cpp similarity index 100% rename from New Year Congratulation/only_numbers.cpp rename to Project_New_Year_Congratulation/only_numbers.cpp diff --git a/Quiz Game/quiz-game-with-oop.cpp b/Project_Quiz_Game/quiz-game-with-oop.cpp similarity index 100% rename from Quiz Game/quiz-game-with-oop.cpp rename to Project_Quiz_Game/quiz-game-with-oop.cpp diff --git a/Quiz Game/quiz-game.cpp b/Project_Quiz_Game/quiz-game.cpp similarity index 100% rename from Quiz Game/quiz-game.cpp rename to Project_Quiz_Game/quiz-game.cpp diff --git a/Snake Game/snake-game.cpp b/Project_Snake_Game/snake-game.cpp similarity index 100% rename from Snake Game/snake-game.cpp rename to Project_Snake_Game/snake-game.cpp From 06538733047f92de287f061a40927ffaf44a561a Mon Sep 17 00:00:00 2001 From: Rustam Zokirov <59933997+Rustam-Z@users.noreply.github.com> Date: Fri, 23 May 2025 22:53:47 -0700 Subject: [PATCH 8/9] Update README.md --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f8531e4..0a40ab1 100644 --- a/README.md +++ b/README.md @@ -338,6 +338,9 @@ 53. Lost and found as a web app. ## More Project Ideas -- https://codingchallenges.fyi/challenges/challenge-redis-cli -- https://github.com/codecrafters-io/build-your-own-x +- [Coding Challenges: Build Your Own](https://codingchallenges.fyi/challenges/intro) +- [Build your own +](https://github.com/codecrafters-io/build-your-own-x) +- [🔥 200 Project Ideas from Beginner to Advanced with Open Source Contributions 🚀 +](https://dev.to/kishansheth/200-project-ideas-from-beginner-to-advanced-with-open-source-contributions-3g6a) From eebd092a91dcc3c0b416bebcad8763c4bb8c55ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=40Rustam-Z=20=F0=9F=9A=80?= <59933997+Rustam-Z@users.noreply.github.com> Date: Thu, 18 Sep 2025 15:25:07 +0200 Subject: [PATCH 9/9] Update README.md --- Lab_15/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lab_15/README.md b/Lab_15/README.md index 13643b4..6a26dac 100644 --- a/Lab_15/README.md +++ b/Lab_15/README.md @@ -8,7 +8,7 @@ From this class derive two classes: - `Tape`, which add playing time in minutes (type float). Each of these three classes should have: -- `getdata() function to display its data +- `getdata()` function to display its data - `setdata()` function to get its data from the user at the keyboard. Write a main() program to test the Book and Tape classes by creating instances of them, asking the user to fill with data with `setdata()`, and then displaying the data with `getdata()`. @@ -52,4 +52,4 @@ Deposit() – will deposit the money and update amount Balance() - will display the balance of account Compute_Interest() – calculate interest based on given condition [ROI is 4% per annum] Withdraw() – will allow to withdraw from account (check if withdrawal amount is less than balance and update balance) -``` \ No newline at end of file +```