首页
外语
计算机
考研
公务员
职业资格
财经
工程
司法
医学
专升本
自考
实用职业技能
登录
计算机
有如下程序: #include<iostream> using namespace std; int main(){ int i=1,s=0; while(s<30){ s+=i*i: i++; } cout<<s<<endl: return0; } 运行
有如下程序: #include<iostream> using namespace std; int main(){ int i=1,s=0; while(s<30){ s+=i*i: i++; } cout<<s<<endl: return0; } 运行
admin
2017-07-28
14
问题
有如下程序:
#include<iostream>
using namespace std;
int main(){
int i=1,s=0;
while(s<30){
s+=i*i:
i++;
}
cout<<s<<endl:
return0;
}
运行后的输出结果是( )。
选项
A、32
B、30
C、31
D、55
答案
B
解析
程序通过while循环,将s累加为i的平方,每次循环后将i自增1,所以s的结果为:1*1+2*2+3*3+...,直到s小于30,由1+4+9+16=30,此时while循环条件不满足,退出循环,输出s的值为30。本题答案为B选项。
转载请注明原文地址:https://jikaoti.com/ti/ANt0FFFM
本试题收录于:
二级C题库NCRE全国计算机二级分类
0
二级C
NCRE全国计算机二级
相关试题推荐
假定一个二维数组的定义为"int a[3][5];”,则该数组所含元素的个数为15,所占的存储空间的字节数为【 】。
在面向对象方法中,属性与操作相似的一组对象称为【 】。
语句cout<<(a=2)&&(b=-2);的输出结果是
在下列关系运算中,可能改变关系中属性个数的是
下列数据结构中按“先进先出”原则组织数据的是
阅读下列程序:#include<iostream.h>voidfun(intn){intx(5);staticinty(10);if(n>0){++x;++y;cou
以下程序的执行结果是_______。#include<iostream.h>#include<fstream.h>#include<stdlib.h>voidmain(){charch:fstre
下面的哪个选项不能作为函数的返回类型?
下面程序错误的语句是①#include<iostream.h>②voidmain(0③{④int*p=newint[1];⑤p=9;⑥cout<<*p<<end1;
在关系数据库中,用来表示实体之间联系的是
随机试题
A、Toincreasecapacitytomeetgrowingneeds.B、Tomakewayforothermeansoftransport.C、Tohaveitssystemsmodernised.D、To
A、 B、 C、 D、 E、 A
高原心脏病心电图检查可见
设计生产能力为500m3/h的混凝土生产系统,其生产规模为()。
适用协定税率、特惠税率的进口货物有暂定税率的,按暂定税率征税
Causeandeffectisonewaytoexplainthingsthathappenaroundus.Manythingshappenbecausesomethingcausedorinfluencedt
关于工程变更控制的说法,不正确的是()。
下面关于嵌入式系统逻辑组成的叙述中,错误的是()。
PassageTwo(1)Abouttwo-thirdsoftheworld’spopulationisexpectedtoliveincitiesbytheyear2020and,accordingto
Adultswhohadbeenfedplentyoffruitwhentheywerechildrenarelesslikelytosufferfromcertaintypesofcancer,British
最新回复
(
0
)