测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A61986. 运行下列程序时, 若从键盘上输入“8<enter>”, 则程序的输出结果是( )。#include<bits/stdc++.h>

单选题

题目描述

运行下列程序时, 若从键盘上输入“8<enter>”, 则程序的输出结果是(   )。

#include<bits/stdc++.h>
using namespace std;
main()
{
    int a=3, b=5, c;
    a++;
    --b;
    c=a*b;
    cout<<c;
    return 0;
}

选项(单选)