f1501.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f1501.cpp
  3. // exit when meet an error
  4. //=====================================
  5. #include<fstream>
  6. #include<iostream>
  7. #include<cmath>
  8. using namespace std;
  9. //-------------------------------------
  10. void fn(){
  11.   ifstream in("abc.txt");
  12.   if(!in){ cout<<"Error: open file failure.n"; exit(1); }
  13.   for(int a; in>>a; cout<<sqrt(a*1.0)<<"n")
  14.     if(a<0){ cout<<"Error: read in illegle data.n"; exit(1); }
  15. }//------------------------------------
  16. int main(){ fn(); }
  17. //=====================================
  18.