执行以下程序,输出()n = 4def func(str): global n n=3 return str*nfunc("hello")print(n)
A: hellohellohellohello
B: hellohellohello
C: 4
D: 3
A: hellohellohellohello
B: hellohellohello
C: 4
D: 3
举一反三
- 执行以下d代码以后 输入15 3回车 则输出结果为 def convert n k if n 0 return convert n k k str n k else return a b eval input print convert a b
- 以下程序执行后的输出结果是() A: n=5 B: n=2 C: n=3 D: n=4
- 下面程序的输出结果是n=2 def multiply(x,y=10): global n return x*y*n s=multiply(10,2) print(s)
- 以下代码执行的输出结果是 n=2def multiply(x,y = 10): global n return x*y* ns = multiply(10,2)print(s) A: 1024 B: 40 C: 200 D: 400
- 下列程序的运行结果是()。#include [stdio.h] void func(int n) { static int num=1; num=num+n; printf(" %d",num); } int main() { func(3); func(4); printf("\n"); return 0; } A: 4 8 B: 3 4 C: 3 5 D: 4 5