C++ Primer Plus 第二章编程练习自编程序

//C++ Primer Plus 第二章编程练习
//eg.1显示姓名和地址
#include
int main()
{
 using namespace std;
 cout << "姓名:K&J" << endl;
 cout << "地址:HDU\n";
 cin.get();
 return 0;
}
//eg.2输入一个以long为单位的距离,转换为码(一long等于220码)
//#include 
//int main()
//{
// using namespace std;
// double L;
// cout << "请输入一个以long为单位的距离:";
// cin >> L;
// cout << L << "long=" << L * 220 << "码" << endl;
// cin.get();
// cin.get();
// return 0;
//}
//eg.3使用三个用户定义的函数,输出语句
//#include 
//using namespace std;
//void a();
//void b();
//int main()
//{
// a();
// a();
// b();
// b();
// cin.get();
// return 0;
//}
//void a()
//{
// cout << "Three blind mice" << endl;
//}
//void b()
//{
// cout << "See how they run" << endl;
//}
//eg.4输入年龄,显示该年龄包含多少个月
//#include 
//int main()
//{
// using namespace std;
// cout << "请输入你的年龄:" << endl;
// int age;
// cin >> age;
// int mouth;
// mouth = age * 12;
// cout << "你的年龄等于" << mouth << "个月" << endl;
// cin.get();
// cin.get();
// return 0;
//}
//eg.5调用函数,进行摄氏度的转换
//#include 
//using namespace std;
//double zhuanhuan(double);
//int main()
//{
// cout << "请输入摄氏温度值:";
// double Celsius;
// cin >> Celsius;
// double Fahrenheit;
// Fahrenheit = zhuanhuan(Celsius);
// cout << Celsius << "摄氏度等于" << Fahrenheit << "华氏温度" << endl;
// cin.get();
// cin.get();
// return 0;
//}
//double zhuanhuan(double temp)
//{ 
// return temp * 1.8 + 32.0;
//}
//eg.6调用一个程序,输入光年值,显示结果
//#include 
//using namespace std;
//void shuchu(double);
//int main()
//{
// cout << "请输入光年值:";
// double guangnian;
// cin >> guangnian;
// shuchu(guangnian);
// cin.get();
// cin.get();
// return 0;
//}
//void shuchu(double temp)
//{
// cout << temp << "等于" << temp * 63240 << "天文单位" << endl;
//}
//eg.7输入小时、分钟,传递给一个void函数,返回两个值并显示
//#include 
//using namespace std;
//void shuchu(int, int);
//int main()
//{
// cout << "请输入小时:";
// int hour;
// cin >> hour;
// cout << "请输入分钟:";
// int second;
// cin >> second;
// shuchu(hour, second);
// system("pause");
// return 0;
//}
//void shuchu(int temp1, int temp2)
//{
// cout << "Time: " << temp1 << ":" << temp2 << endl;
//}

你可能感兴趣的:(C++)