Inside the function, you can add as many parameters as you want:
void myFunction(
string fname, int age) {
cout << fname << " Refsnes. " << age << " years old. \n";
}
int main() {
myFunction(
"Liam", 3);
myFunction(
"Jenny", 14);
myFunction(
"Anja", 30);
return 0;
}
// Liam Refsnes. 3 years old.
// Jenny Refsnes. 14 years old.
// Anja Refsnes. 30 years old.
Try it Yourself »
Note that when you are working with multiple parameters, the function call must have the same number of arguments as there are parameters, and the arguments must be passed in the same order.
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!