Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <fstream>
- #include <cstdlib>
- /* run this program using the console pauser or add your own getch, system("pause") or input loop */
- using namespace std ;
- int main(int argc, char** argv) {
- ifstream plik;
- plik.open("NAZWA PLIKU", ios::in);
- int pierwsza[1000];
- int druga[1000];
- for(int i=1;i<1001;i++)
- plik>>pierwsza[i]>>druga[i];
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement