//摄氏温度与华氏温度转换
#include
using namespace std;
double simon(float a) ; //可以在main()函数之前定义simon,减少一步
int main()
{
float a; //这个声明和定义simon的时候simon()里的a都不能省略
cout << “Please enter a Celsius value:”;
cin >> a;
cout << a << " degrees Celsius is " << simon(a) << " degrees Fahrenheit " << endl;
//直接将Simon的返回值加入到输出流中
cin.get();
cin.get();//两个,第一条在输入时按Enter键读取输入,第二条让程序暂停
return 0;
}
double simon(float a)
{
double b;
b = a * 1.8 + 32.0;
return b;
}
//输入小时分钟数,输出时间
#include
using namespace std;
void simon(int a, int b)
{
cout << "Enterthe number of hours: "<< a << endl;
cout << “Enter the number of minutes:” << b << endl;
//这里不能cin>>a>>b,因为到主程序还得需要输入一遍,不然a,b无初始值
}
int main()
{
int a, b;
cin >> a >> b;
//这里输入不会影响在simon里的位置
simon(a, b);
cout << "Time: " << a << “:” << b << endl;
cin.get();
cin.get();
return 0;
}