Write a program that prompts the user to input height and width and print the hollow rectangle
as given in the output below. The program should check whether the both height and width
of rectangle are equal or not. Do not use nested loops.
this problem, you are required to build a system that can generate a random winning
scenario for the T20 cricket world cup. There are 12 teams in the tournament and every team will play
one match each on the knock-out basis in the first round. It means that the losing team of every match
leaves the tournament while the winning team continues to play the next match. From the twelve teams,
six winning teams will play another knock-out match. From these six teams, three winning teams will play
against each other on the round robin basis (i.e. team A plays against team B, team B plays against team
C, and team C plays against team A). The top two teams from this round will move to the final match. In
case all the teams win one match each at this stage, then there will be a toss to move one team to the
final while the other two teams will play against each other and the winner moves to the final. The winner
of the final match will be declared the champion of the T20 world cup.
c++ programming Write a program which reads salaries of 10 employes of an organization. The program will, what the maximum salary is and what the minimum salary is
Demonstrate what are the other area where copy constructor is called using C++ programme.
Demonstrate how copy constructor is called during pass by value and return by value using C++ programme.
Jason typically uses the Internet to buy various items. If the total cost of the items ordered, at
one time, is $200 or more, then the shipping and handling is free; otherwise, the shipping and
handling is $10 per item. Write a program that prompts Jason to enter the number of items
ordered and the price of each item. The program then outputs the total billing amount. You
have to use a loop (repetition structure) to get the price of each item. (For simplicity, you may
assume that Jason orders no more than nine (9) items at a time.)
Similar to most ATM terminals, the program should intake some input from the user and depending on the user’s action request, it should intereact with the database (in this case, the database.csv file provided) to execute the action.
At first, the user should be asked to enter his/her card number (we assume it to be a 6-digit number). If the format of the number entered is verified with the database, then the user should be asked to enter the corresponding PIN code (we assume it to be a 4-digit number). If either the card number or PIN code is incorrect, then the program should display the error and ask the user to enter the number. The program should display the information, which shold be retrieved from the database (Assume USD to KZT to USD xchange rate to be 1 USD = 450 KZT):
P.S I don't know how to upload provided excel document
Define a class named Movie. Include private fields for the title, year, and name of the director.
Include three public functions with the prototypes
void Movie::setTitle(string);
void Movie::setYear(int);
void Movie::setDirector(string);
write a program to initialize the value as 20 & display the value on the monitor?
Use the "for" loop with "if" to write a program that asks the user to type 15 integers and displays :
1. The smallest of these integers.
2. The largest of these integers