#include <fstream> int main() { std::ofstream file; file.open("/tmp/fstream.txt"); file << __FILE__ << std::endl; file.close(); }.
確定! 回上一頁