Answer:
nothing much what class r u in
Answer:
If you mean two sides are 7 and two sides are 14 then you'd have 42
and for the second you'd have 14
Explanation:
7 + 7 = 14, 14 + 14 = 28, 14 + 28 = 42
3 + 3 = 6, 4 + 4 = 8, 8 + 6 = 14
Answer:
#include <iostream>
using namespace std;
void PrintPopcornTime(int bagOunces) {
if(bagOunces < 3){
cout << "Too small";
cout << endl;
}
else if(bagOunces > 10){
cout << "Too large";
cout << endl;
}
else{
cout << (6 * bagOunces) << " seconds" << endl;
}
}
int main() {
PrintPopcornTime(7);
return 0;
}
Explanation:
Using C++ to write the program. In line 1 we define the header "#include <iostream>" that defines the standard input/output stream objects. In line 2 "using namespace std" gives me the ability to use classes or functions, From lines 5 to 17 we define the function "PrintPopcornTime(), with int parameter bagOunces" Line 19 we can then call the function using 7 as the argument "PrintPopcornTime(7);" to get the expected output.
Answer:
Engineers design, evaluate, develop, test, modify, install, inspect and maintain a wide variety of products and systems.
Explanation: