Advertisement
alexon5519

panarama de program

Oct 26th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #include<iostream.h>
  2. #include<fstream.h>
  3. int main(){
  4. ifstream f1("BAC.TXT");
  5. int x,i=0;
  6. while(f1>>x){
  7. cout<<x;
  8. i++;
  9. if(i%5!=0)
  10. cout<<" ";
  11. else
  12. cout<<endl;}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement