要求:
(1)现编写函数,函数原型是 int Payfor(int toothbrush,int toothpaste),其中:toothbrush表示牙刷的数量,参数 toothpaste表示牙膏的数量。
(2)输入:牙刷数量、牙膏数量。
输出:总花费价格。
没注释的源代码
#include <iostream>
using namespace std;
int Payfor(int toothbrush,int toothpaste);
int main()
{
int a,b;
cout<<"请输入牙刷数量、牙膏数量:";
cin>>a>>b;
cout<<"总花费价格:"<<Payfor(a,b);
}
int Payfor(int toothbrush,int toothpaste)
{
if(toothbrush>toothpaste)
{
if(toothpaste>=5)
{
return (toothbrush-toothpaste)*5+toothpaste*15;
}
else (toothbrush-toothpaste)*5+toothpaste*18;
}
else
{
if(toothbrush>=5)
{
return (toothpaste-toothbrush)*15+toothbrush*15;
}
else (toothpaste-toothbrush)*15+toothbrush*18;
}
}