Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <windows.h>
- #include <iostream>
- #include <cstdio>
- int main()
- {
- char str[50];
- for (int i=0; i < 120; i+=2)
- for (int j=0; j < 120; j+=2)
- {
- sprintf(str, "copy C:\\1.WNV C:\\sectors2x2_%d_%d.wnv /A /B /Y", i, j);
- std::cout << j << ' ' << str << std::endl;
- system(str);
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment