Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望用户能够输入一些文本,然后计算机创建一个文件,称为文本。在 C++ 中。
#include <cstdlib> int main() { return system("read FILE && touch \"$FILE\""); }
注意:需要 POSIX。应该没问题,实际上所有现代操作系统都与 POSIX 兼容。
因为这看起来像家庭作业,所以我没有给出完整的例子。
在看:
#include <iostream>
#include <cstdio>