Answer:
See explaination
Step-by-step explanation:
The function definition is :
void scale(int size, double factor)
The parameter size maps to variable my_team which is integer and parameter factor maps to the double value 1.1 or 0.9 which are passed while function calling. Therefore the datatype of size is int (integer) and datatype of factor is double.