欢迎来到求知题库网 考试题库官网
全部科目 > 大学试题 > 计算机科学 > 计算机程序设计 > CPP考试

单项选择题

1)#include < iostream >
2)# include < math.h >
3)using namespace std;
4)double max(double x,doubley);
5)void main()
6){
7)double   a,b,c;
8)cout << " input two numbers:\n";
9)cin>>a>>b;
10)c=max(a,b);
11)cout<< " the squart of max imum="<< sqrt(c);
12)}
13)double max(doublex,doubley)
14){
15)if(x>y)
16)returnx;
17)else
18)returny;
19)}

程序第8行执行完后,光标在:()

    A、input two number:前面
    B、input two number:后面
    C、input two number:下一行首列
    D、不确定

点击查看答案&解析

相关考题