Advertisement
Dmaxiya

对拍 .bat 参考

Mar 28th, 2025
370
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.27 KB | None | 0 0
  1. @echo off
  2. g++ -g my.cpp -o my.exe
  3. g++ -g right.cpp -o right.exe
  4. g++ -g data.cpp -o data.exe
  5. :loop
  6.     data.exe > test.txt
  7.     right.exe < test.txt > right_ans.txt
  8.     my.exe < test.txt > my_ans.txt
  9.     fc right_ans.txt my_ans.txt
  10.     if not errorlevel 1 goto loop
  11. pause
  12. goto loop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement