#include int cude( );int main( ){ int x=5;x=cude( );printf("%d\n",x);return 0;}int cude( ){ int x;x=x*x*x; return x;} A: 5 B: 125 C: 0 D: 1
#include int cude( );int main( ){ int x=5;x=cude( );printf("%d\n",x);return 0;}int cude( ){ int x;x=x*x*x; return x;} A: 5 B: 125 C: 0 D: 1
以下程序的运行结果是 。 int x; main() {x=5; cude(); printf("%d\n",x); } cude() {x=x*x*x;}
以下程序的运行结果是 。 int x; main() {x=5; cude(); printf("%d\n",x); } cude() {x=x*x*x;}
1