(第五章)语句(Statement)

本章介绍几种典型的C++语句,分别是:

  • 空语句
  • 条件语句(if、switch)
  • 迭代语句(while、do-while、for、范围for)
  • 跳转语句(break、continue、goto)

此外还介绍了与语句密切相关的知识:语句的作用域和异常处理机制。
第五章也就异常这个需要注意一点

#include
using namespace std;

int main()
{
    int v1, v2;
    cout << "请输入两个整数" << endl;
    while (cin >> v1 >> v2)
    {
        try
        {
            if (v2 == 0)
                throw runtime_error("除数不能为0");
            cout << "两数相除的结果是:" << v1 / v2 << endl;
        }catch (runtime_error err)
        {
            cout << err.what() << endl;
            cout << "需要继续吗(y or n)?" << endl;
            char ch = 'y';
            cin >> ch;
            if (ch != 'y' && ch != 'Y')
                break;
        }
    }
    return 0;
}```

你可能感兴趣的:((第五章)语句(Statement))