鱼C论坛

 找回密码
 立即注册
查看: 1355|回复: 0

[学习笔记] 第二章习题(练习)

[复制链接]
发表于 2020-7-17 13:19:22 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
二、编程练习

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;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-11 11:39

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表