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.
Tryna boost my score for college stuff could you give me the brainiest and a thanks? Hope you find your answer your looking for!
Answer: False
Explanation: Sandwich materials are usually in composite material form which has a fabrication of two thin layers which are stiff in nature and have light weighing and thick core .The construction is based on the ratio that is of stiffness to the weight .Therefore, the density of the material in the core is not high and are only connected with the skin layer through adhesive .So the given statement is false that sandwich materials typically use a high density core with non- structural cover plates.