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
1) Write a C++ programme which demonstrate static binding and dynamic binding.
2) Write a C++ programme which demonstrate vitual destructor.
1) Write a C++ programme which demonstrate single inheritance and multiple inheritance.
2) Write a C++ programme which demonstrate hybrid inheritance and multilevel inheritance.
1) Write a C++ Program to swap data members of two objects of a class using friend function.
2)Write a C++ program to demonstrate friend class.
1)Write a programme in c++ to Overload << operator using friend function.
2)Write a programme in c++ to Overload >> operator using friend function.
Create a class called Stack for storing integers. The data members are an integer array for storing
the integers and an integer for storing the top of stack (tos). Include member functions for initializing tos
to 0, pushing an element to the stack and for popping an element from the stack. The push() function
should check for “stack overflow” and pop() should check for “stack underflow”.