#include <stdio.h> #include <math.h> void new() { printf("你好\n"); } void two() { int i=0; for (i=0;i<3;i++) { new(); } } int main() { two(); return 0; }