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

单项选择题

1)#include
2)using namespace std;
3)int main()
4){
5)int a,b,result;
6)cout<<"please input two numbers:\n";
7)cin>>a>>b;
8)result=3*a-2*b+1;
9)cout<<"resultis" << result << endl;
10)} 

程序的第5行中的cout表示:()

    A、显示字符串
    B、标准输出的流设备
    C、标准输入的流设备
    D、程序入口

点击查看答案&解析

相关考题