返回列表 發帖

706 整數檔案讀寫

1. 題目說明:
請依下列題意進行作答,使輸出值符合題意要求。

2. 設計說明:
請撰寫一程式,讓使用者輸入四個整數,並讀取read.txt檔案內容,read.txt檔案中包含多個整數。將輸入值與read.txt檔案中的整數由小而大排序後輸出,並寫入至write.txt檔案。

提示:若使用 Java 語言答題,請以「JP」開頭命名包含 main 靜態方法的 class,評測系統才能正確評分。

3. 輸入輸出:
輸入說明
四個整數,並讀取read.txt檔案內容

輸出說明
排序後的結果,並寫入至write.txt檔案

範例輸入
10
35
60
85




範例輸出
10
35
59
60
62
75
85
90




附件:read.txt

本帖隱藏的內容需要回復才可以瀏覽

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. ifstream ifs;
  4. ofstream ofs;
  5. int n;
  6. vector<int> m;
  7. int main()
  8. {
  9.     ifs.open("read.txt");
  10.     ofs.open("write.txt");
  11.     for(int i=0;i<4;i++)
  12.     {
  13.         cin>>n;
  14.         m.push_back(n);
  15.     }
  16.     while(ifs>>n)
  17.         m.push_back(n);
  18.     sort(m.begin(),m.end());
  19.     for(int i: m)
  20.     {
  21.         cout<<i<<endl;
  22.         ofs<<i<<'\n';
  23.     }
  24.     return 0;
  25. }
複製代碼

TOP

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. ifstream ifs;
  4. ofstream ofs;
  5. vector<int>v;
  6. int main()
  7. {
  8.     ifs.open("read.txt");
  9.     ofs.open("write.txt");
  10.     int n;
  11.     for(int i=0;i<4;i++)
  12.     {
  13.         cin>>n;
  14.         v.push_back(n);
  15.     }
  16.     while(ifs>>n)
  17.         v.push_back(n);
  18.     sort(begin(v),end(v));
  19.     for(int i:v)
  20.     {
  21.         cout<<i<<'\n';
  22.         ofs<<i<<'\n';
  23.     }
  24.     return 0;
  25. }
複製代碼

TOP

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. ifstream ifs;
  4. ofstream ofs;
  5. vector<int>v;
  6. int main()
  7. {
  8. ifs.open("read.txt");
  9. ofs.open("write.txt");
  10. int n;
  11. for(int i=0;i<4;i++)
  12. {
  13. cin>>n;
  14. v.push_back(n);
  15. }
  16. while(ifs>>n)
  17. v.push_back(n);
  18. sort(begin(v),end(v));
  19. for(int i:v)
  20. {
  21. cout<<i<<'\n';
  22. ofs<<i<<'\n';
  23. }
  24. return 0;
  25. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. ifstream ifs;
  4. ofstream ofs;
  5. int n;
  6. vector<int>v;
  7. int main()
  8. {
  9.     ifs.open("read.txt");
  10.     ofs.open("write.txt");
  11.     for(int i=0;i<4;i++)
  12.     {
  13.         cin>>n;
  14.         v.push_back(n);
  15.     }
  16.     while(ifs>>n)
  17.         v.push_back(n);
  18.     sort(begin(v), end(v));
  19.     for(int i:v)
  20.     {
  21.         cout<<i<<'\n';
  22.         ofs<<i<<'\n';
  23.     }
  24.     return 0;
  25. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. ifstream ifs;
  4. ofstream ofs;
  5. int n;
  6. vector<int>V;
  7. int main()
  8. {
  9.     ifs.open("read.txt");
  10.     ofs.open("write.txt");
  11.     for(int i=0; i<4; i++)
  12.     {
  13.         cin>>n;
  14.         V.push_back(n);
  15.     }
  16.     while(ifs>>n)
  17.     V.push_back(n);
  18.     sort(begin(V),end(V));
  19.     for(int i:V)
  20.     {
  21.         cout<<i<<endl;
  22.         ofs<<i<<'\n';
  23.     }
  24.     return 0;
  25. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. ifstream ifs;
  4. ofstream ofs;
  5. int n;
  6. vector<int>v;
  7. int main()
  8. {
  9.     ifs.open("read.txt");
  10.     ofs.open("write.txt");
  11.     for(int i0;i<4;i++)
  12.     {
  13.         cin>>n;
  14.         v.push_back(n);
  15.     }
  16.     while(ifs>>n)
  17.         v.push_back(n);
  18.     sort(begin(v),end(v));
  19.     for(int i:v)
  20.     {
  21.         cout<<i<<'\n';
  22.         ofs<<i<<'\n\;
  23.     }
  24.     return 0;
  25. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. ifstream ifs;
  4. ofstream ofs;
  5. int n;
  6. vector<int>v;
  7. int main()
  8. {
  9.     ifs.open("read.txt");
  10.     ofs.open("write.txt");
  11.     for(int i=0;i<4;i++)
  12.     {
  13.         cin>>n;
  14.         v.push_back(n);
  15.     }
  16.     while(ifs>>n)
  17.         v.push_back(n);
  18.     sort(begin(v), end(v));
  19.     for(int i:v)
  20.     {
  21.         cout<<i<<'\n';
  22.         ofs<<i<<'\n';
  23.     }
  24.     return 0;
  25. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. ifstream ifs;
  4. ofstream ofs;
  5. int n;
  6. vector<int> m;
  7. int main()
  8. {
  9.     ifs.open("read.txt");
  10.     ofs.open("write.txt");
  11.     for(int i=0;i<4;i++)
  12.     {
  13.         cin>>n;
  14.         m.push_back(n);
  15.     }
  16.     while(ifs>>n)
  17.         m.push_back(n);
  18.     sort(m.begin(),m.end());
  19.     for(int i: m)
  20.     {
  21.         cout<<i<<endl;
  22.         ofs<<i<<'\n';
  23.     }
  24.     return 0;
  25. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. ifstream ifs;
  4. ofstream ofs;
  5. int n;
  6. vector<int> v;
  7. int main()
  8. {
  9.     ifs.open("read.txt");
  10.     ofs.open("write.txt");
  11.     for(int i=0; i<4; i++)
  12.     {
  13.         cin>>n;
  14.         v.push_back(n);
  15.     }
  16.     while(ifs>>n)
  17.         v.push_back(n);
  18.     sort(begin(v), end(v));
  19.     for(int i: v)
  20.     {
  21.         cout<<i<<'\n';
  22.         ofs<<i<<'\n';
  23.     }
  24.     return 0;
  25. }
複製代碼

TOP

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. ifstream ifs;
  4. ofstream ofs;
  5. int n;
  6. vector<int>v;
  7. int main()
  8. {
  9.     ifs.open("read.txt");
  10.     ofs.open("write.txt");
  11.     for(int i=0;i<4;i++)
  12.     {
  13.         cin>>n;
  14.         v.push_back(n);
  15.     }
  16.     while(ifs>>n)
  17.         v.push_back(n);
  18.     sort(begin(v), end(v));
  19.     for(int i:v)
  20.     {
  21.         cout<<i<<'\n';
  22.         ofs<<i<<'\n';
  23.     }
  24.     return 0;
  25. }
複製代碼

TOP

返回列表