#include <stdio.h>void two(){? ? printf("two");}void one_three(){? ? printf("one\n");? ? two();? ? printf("\nthree\n");}int main(void)?{? printf("Start:\n"); one_three; printf("done!\n"); return 0;}顯示不了one,two,three
添加回答
舉報
0/150
提交
取消