Answer:
Following are the statement of the program in the C++ Programming Language.
//prototype of the function
double powerTo (double, int);
Explanation:
In the following statement which is written in the C++ Programming Language.
- The function prototype tells us what type of data type return by that function.
- We declare the prototype of the function "powerTo()" which returns the double and pass two arguments first one is double data type and the second one is integer data type.
Answer:
its B the person in the comments were right
Explanation:
took an edge test
The answer Direct and inderect
Answer:
if(soldYesterday > soldToday){
salesTrend = -1;
} else if(soldToday > soldYesterday){
salesTrend = 1;
}
Explanation:
The if/else statement is more explicit. The first if condition check if soldYesterday is greater than soldToday, if true, then -1 is assigned to salesTrend.
Else if soldToday is greater than soldYesterday, if true, then 1 is assigned to salesTrend.
Yes i would love to help the cause <span />