几何平均收益更多地被用来对将来收益率进行估计。( )
参考答案:错
1)#include
2)usingnamespacestd;
3)intmain()
4){
5)inta,b,result;
6)cout<<"pleaseinputtwonumbers:\n";
7)cin>>a>>b;
8)result=3*a-2*b+1;
9)cout<<"resultis"<10)} 程序执行到第7行时,假设此时输入“4空格5”,则a的值是:()A.0B.4C.5D.不确定
10)}
程序执行到第7行时,假设此时输入“4空格5”,则a的值是:()
A.0
B.4
C.5
D.不确定
下列程序的输出结果是______。 #include<stdio.h> main () int a,b;for(a=1,b=1;a<=100;a++) if(b>=20)break; if(b%3==1)b+=3;continue; b-=5; printf("%d\n",a);
A.7
B.8
C.9
D.10