Toggle navigation
首页
题库
试卷
教程
动态
下载
题库中心查询
Tips
如需搜索2023年5月14日第十四届蓝桥杯青少组省赛Python真题及答案, 搜蓝桥杯即可
#
试题名
热度
更新日期
1721
以下正确的函数原型为( )。 (A)fun1( int x; int y ); (B)void fun1( x, y ); (C)void fun1( int x, y );
62
2025-01-24
1722
函数参数的默认值不允许为( )。 (A)全局常量 (B)直接常量 (C)局部变量 (D)函数调用
38
2025-01-24
1723
以下正确的函数定义是( )。 (A)int * fun10(double x){ return x; } (B)int * fun10(double x){ return &x; }
100
2025-01-24
1724
有以下声明,在下列选项中,正确的调用是( )。 void fun9( int * & ); int a, int *p = &a; (A)fun9(&a); (B)fun
49
2025-01-24
1725
有函数原型 void fun8( int & ); 在下列选项中,正确的调用是( )。 (A)int a = 2.17; fun8( &a ); (B)int a
75
2025-01-24
1726
有函数原型 void fun7( int * ); 在下列选项中,正确的调用是( )。 (A)double x = 2.17; fun7( &x ); (B)int
61
2025-01-24
1727
有函数原型 void fun6( int ); 在下列选项中,不正确的调用是( )。 (A)int a = 21; fun6( a ); (B)int a =
51
2025-01-24
1728
阅读程序,写出运行结果。 #include<iostream> using namespace std; void func(int a, int b, int c = 3, in
88
2025-01-24
1729
阅读程序,写出运行结果。 #include<iostream> using namespace std; void func( int, int, int * ); int mai
35
2025-01-24
1730
阅读程序,写出运行结果。 #include<iostream> using namespace std; void func( int, int, int & ); int mai
32
2025-01-24
1731
阅读程序,写出运行结果。 #include<iostream> using namespace std; void func( int *, int *, int
58
2025-01-24
1732
编写一个程序,测试三个函数,它们都能够把main函数中的变量count的值增至原来的三倍。这三个函数说明如下: (a)tri
74
2025-01-24
1733
关于递归调用不正确的描述是( )。 (A)递归调用和嵌套调用都是通过堆栈管理实现的 (B)函数直接或间接调用自己称
70
2025-01-24
1734
实现函数调用需要( )进行信息管理。 (A)队列 (B)堆栈 (C)数组 (D)参数
54
2025-01-24
1735
一个项目中包含三个函数:main、fa和fb函数,它们之间不正确的调用是( )。 (A)在main函数中调用fb函数 (B)在fa函数
29
2025-01-24
1736
一个项目中只能有一个的函数是( )。 (A)系统库函数 (B)自定义函数 (C)主函数 (D)在其他文件中定义的函数
31
2025-01-24
1737
在C++中,一个项目可以包含多个函数,它们之间是( )。 (A)独立定义的 (B)嵌套定义的 (C)根据调用关系定义的 (D)根
60
2025-01-24
1738
阅读程序,写出运行结果。 #include<iostream> using namespace std; int f2( int, int ); int f1( int a, in
36
2025-01-24
1739
阅读程序,写出运行结果。 #include<iostream> using namespace std; int age( int n ) { int f; if( n == 1
45
2025-01-24
1740
编写递归函数: int power(int base, int e); 当它被调用时,返回指数basee的值。设e是大于或等于0的整数。用ma
47
2025-01-24
3825
首页
上一页
85
86
87
88
89
90
91
92
93
94
下一页
尾页