码迷,mamicode.com
首页 > 编程语言 > 详细

c++ primer 6.2.1节练习答案

时间:2017-08-02 17:46:14      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:hat   his   row   int   cin   while   try catch   throw   erro   

练习6.10

源文件

 1 int main()
 2 {
 3     try                                 //尝试用下try catch
 4     {
 5         while (cin >> num1 >> num2)
 6         {
 7             if (num1 == 999)
 8                 throw runtime_error("this number may be error!");
 9             exchange_num(&num1, &num2);
10             cout << num1 << " " << num2 << endl;
11         }
12     }
13     catch (runtime_error err)
14     {
15         cout << err.what();
16     }
17     system("pause");
18     return 0;
19 }

 

头文件

1 #ifndef FIRSTHEAD_H
2 #define FIRSTHEAD_H
3 void exchange_num(int *p, int *q);
4 int num1, num2;
5 #endif // !FIRSTHEAD_H

 

函数定义

1 void exchange_num(int *p, int *q)
2 {
3     int temp;
4     temp = *q;
5     *q = *p;
6     *p = temp;
7     return;
8 }

 

c++ primer 6.2.1节练习答案

标签:hat   his   row   int   cin   while   try catch   throw   erro   

原文地址:http://www.cnblogs.com/wuyinfenghappy/p/7274951.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!