Handsome_zhou 发表于 2020-7-17 13:19:22

第二章习题(练习)

二、编程练习

1、编写一个C++程序,它显示您的姓名和地址。

#include <iostream>

int main()
{
      using namespace std;
      cout << "我的姓名" << endl;
      cout << "我的地址" << endl;
}

2、编写一个C++程序看,它要求用户输入一个以long为单位的距离,然后将它转换为码(一long等于220码)。

#include <iostream>

int main()
{
      using namespace std;
      int long1;
      int numb;
      cout << "请输入一个距离: ";
      cin >> long1;
      cout << long1 << endl;
      numb = long1 * 220;
      cout << "转换后的结果为 " << numb << " 码" << endl;
}

3、编写一个C++程序,它使用3个用户定义的函数(包括main()),并生成下面的输出:
Three blind mice
Three blind mice
See how they run
See how they run

#include <iostream>

void text1();
void text2();

int main()
{
      using namespace std;
      text1();
      text2();
}

void text1()
{
      using namespace std;
      cout << "Three blind mice\n";
      cout << "Three blind mice\n";
}

void text2()
{
      using namespace std;
      cout << "See how they run" <<endl;
      cout << "See how they run" <<endl;
}

4、编写一个C++程序,让用户输入其年龄,然后显示该年龄包含多少个月,如下所示:
Enter your age: 29

#include <iostream>

int main()
{
      using namespace std;
      int age;
      int month;
      cout << "Enter your age: ";
      cin >> age;
      month = age * 12;
      cout << "该年龄包含" << month << "个月" <<endl;
}


5、编写一个程序,其中的main()调用一个用户定义的函数(以摄氏度值为参考,并返回相应的华氏温度值)。该程序按下面的格式要求
用户输入摄氏温度值,并显示结果:
please enter a Celsius value: 20
20 degrees Celsius is 68 degree Fahrenheit.
转换公式:华氏温度 = 1.8 * 摄氏温度 + 32.0

#include <iostream>

double temperature(double);

int main()
{
      using namespace std;

      int celsius;
      int fahrenheit;
      cout << "Please enter a celsius value: ";
      cin >> celsius;
      fahrenheit = temperature(celsius);
      cout << celsius << " degrees Celsius is " << fahrenheit << " degrees Fahrenheit" <<endl;
}

double temperature(double n)
{
      using namespace std;
      double t;
      t = 1.8 * n +32.0;
      return t;
}
页: [1]
查看完整版本: 第二章习题(练习)