f1501.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:
C#编程
开发平台:
Visual C++
- //=====================================
- // f1501.cpp
- // exit when meet an error
- //=====================================
- #include<fstream>
- #include<iostream>
- #include<cmath>
- using namespace std;
- //-------------------------------------
- void fn(){
- ifstream in("abc.txt");
- if(!in){ cout<<"Error: open file failure.n"; exit(1); }
- for(int a; in>>a; cout<<sqrt(a*1.0)<<"n")
- if(a<0){ cout<<"Error: read in illegle data.n"; exit(1); }
- }//------------------------------------
- int main(){ fn(); }
- //=====================================