#include // 定义一个完全无操作的noop函数 void noop() { // 此函数完全不执行任何操作 } int main() { // 仅调用noop函数 noop(); // main函数也不进行任何输出 return 0; }