Advertisement
blueset

test prog

Sep 2nd, 2014
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.40 KB | None | 0 0
  1. /*
  2. BEFORE U RUN.....
  3. please have 2 .txt documents in the same folder of ur excutable
  4. testin.txt----------
  5. 10 20
  6.  
  7.  
  8. testout.txt is empty
  9.  
  10. after runing, testout.txt should gives 30
  11. */
  12. #include <iostream>
  13. #include <fstream>
  14. using namespace std;
  15.  
  16. int main(){
  17.     ifstream inf("testin.txt");
  18.     ofstream outf("testout.txt");
  19.     int a,b;
  20.     inf >> a >> b;
  21.     outf << a+b;
  22.     return 0;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement