本文主要是介绍c++中 throw try catch的浅显应用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
#include <iostream>
#include <stdlib.h>using namespace std;void func(int a,int b)
{if(b==0)throw b;cout<<a/b<<endl;
}int main()
{int a,b;while (cin>>a>>b){try{func(a,b);}catch(...){cout<<"是否需要重新输入:y或者n"<<endl;char str;cin>>str;if(!cin||str=='n')break;}}system("pause");return 0;
}
这篇关于c++中 throw try catch的浅显应用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!