f1503.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:
C#编程
开发平台:
Visual C++
- //=====================================
- // f1503.cpp
- // 单个函数中的异常
- //=====================================
- #include<fstream>
- #include<iostream>
- using namespace std;
- //-------------------------------------
- int main(int argc, char** argv){
- ifstream in(argv[1]);
- try{
- if(!in) throw string(argv[1]);
- }catch(string s){
- cout<<s+" File Opening Error.n";
- return 1;
- }
- for(string s; getline(in, s); cout<<s<<endl );
- }//====================================