Answer:
42.
Step-by-step explanation:
18/3 = 6 jars per day
6*7=42
Answer:
65.45
Step-by-step explanation:
multiply 77 by 0.15 then substract that answer from 77 to get how long the video was after the cut.
Answer:
BINGUSSSSSSSS
Step-by-step explanation:
UwU
Answer:
B, B, A
Step-by-step explanation:
I don't know number 4 answer. hope I helped
Answer:
Step-by-step explanation:
programs can be written in multiply languages. for this solution I'll be writing in C++.
#include<iostream> // this is called the preprocessor definition
using namespace std;
int main() //the main function
{
int num, product; //declaration of the variables
cout << "enter the whole number";
cin >> num;
product = num * 12;
cout << product; // displaying the final results
return 0;
}