Write a program in C++ to print the following pattern:
5
5 4
5 4 3
5 4 3 2
5 4 3 2 1
Write a menu driven program using Switch Case in C++ to input a number and perform the
following tasks:
(i) Count and print the number of its digits.
(ii) Print the sum and product of its digits.
Write a program in C++ to print the sum of first 20 even numbers and odd numbers
separatel
Write a program in C++ to print the following series:
2, 5, 10, 17, 26 ………….. upto 10 terms.
Step 1 (2 pts). Read from input student status (string), homework points, quiz points, midterm exam score, and final exam score (double). Valid student status includes undergrad (UG), grad (G), and distance leaner (DL). Calculate each category average using maximum points for homework (800), quizzes (400), midterm exam (150), and final exam (200). Output an error message if student status is not one of the three options. Otherwise, output category averages as a percentage using cout << "Homework: " << homework << "%" << endl;. Submit for grading to confirm two tests pass.
input is UG 600.0 300.0 120.0 185.0
You are going to make an employee management system. In this lab, you have to create
an Employee class only. Employee class fields are: Employee Name, Employee ID, and Employee Gender. The member functions include the getters and setters for all the member variables and display () function to display the data. In the main function, first create two Employee objects and allow the user to enter data in these objects. Secondly, display the data from these objects.
A company decided to give bonus of 5% to employee if his/her year of service is more than 5 years. Ask user for their salary and year of service and print the net bonus amount.
write a c++program ether even or odd
Debug and Display the output.
1.
#include
using namespace std;
myFunction() {
cout << "I just got executed!";
}
int main() {
myFunction();
return 0;
}
2.
#include
using namespace std;
void myFunction() {
cout << "I just got executed!\n";
}
int() {
myFunction();
myFunction();
myFunction();
return 0;
}
Create a class Book <BOOK_ID,ISBN,TITLE,PRICE> as member variables. Create functions to read and write Book details.Overload a function SEARCH() to search a book based on ISBN and TITLE.Write a menu driven main(), opting user to key-in the search option as 1.Search by ISBN 2.Search by TITLE.