下列程序不能通过编译,应该在划线部分填写的语句是【 】。
include<iostream. h>
include<stdlib. h>
double Fune(int a, int b, char ch)
{
double x;
switch(ch)
{
case '+':
x=double(a) +b;
break;
case '--':
x= double(a) --b;
break;
case '/':
x=double(a) * b;
break;
case '/':
if(B) x=double(a) /b;
else
exit(1)
break
default:
exit(1);
}
______
}
void main()
{
cout<<Func(32 , 6 ,'--')<< ",";
cout<<Func(32, 6 ,'*') <<",";
cout<<Func(32, 6 ,'/') <<end1;
}
第1题:
在使用标准的输入/输出库函数时,应该在程序的开头使用编译预处理命令“#include <stdio.h>”。
第2题:
14、以下程序正确的说法是()。 #include<stdio.h> void main() { int x=0,y=0; if(x=y) printf("*****\n"); else printf("#####\n"); }
A.输出#####
B.有语法错误不能通过编译
C.可以通过编译,但不能通过连接,因此不能运行
D.输出*****
第3题:
12、一个C语言源程序中如果调用了函数fabs,那必须有编译预处理命令()。
A.#include <stdio.h>
B.#include <math.h>
C.#include <ctype.h>
D.#include <stdlib.h>
第4题:
15、在使用标准的输入/输出库函数时,应该在程序的开头使用编译预处理命令“#include <stdio.h>”。
第5题:
【单选题】请阅读以下程序:该程序()。 #include ”stdio.h” void main() { int x=-10, y=5, z=0; if (x=y+z) printf(”***n” ); else printf(”$$$n”); }
A.有语法错不能通过编译
B.可以通过编译但不能通过连接
C.输出***
D.输出$$$