Answer:
Program approach:-
- Using the header file.
- Using the standard namespace I/O.
- Define the main function.
- Display the enter price of 5 terms.
Explanation:
Program:-
//header file
#include<iostream>
#include<iomanip>
//using namespace
using namespace std;
//main function
int main(){
const double SALES_TAX=0.07;
double subTotal=0,total=0,taxAmount = 0,x;
cout<<"Enter price of 5 items"<<endl;
for(int j=0;j<5;j++){
cin>>x;
subTotal += x;
}
taxAmount = subTotal * SALES_TAX;
total = taxAmount + subTotal;
cout<<fixed<<setprecision(2)<<endl;
cout<<"Sub total: "<<subTotal<<endl;
cout<<"Sales Tax: "<<taxAmount<<endl;
cout<<"Total: "<<total<<endl;
}
Answer:
Raster Graphic is a bitmap. They are basically a grid of small pixels that make an image.
Answer:
The answer to this cipher is ....
<u>Zoom, Zoom, Zoom We’re going to the moon. If you want to take a trip, Climb aboard my rocket ship.</u>
Its only shifted by 3 so it didn't take long to find
Hope this helps!
- Quinn