#include <iostream> #include <fstream> using namespace std; int main() { { ofstream out("test.txt", ios::binary); for(int i = 0; i < 100; i++) out.put('_'); ...
確定! 回上一頁