下面算式中应用的是乘法分配律的是[ ]
A.(80+4)×25=80×25+4×25
B.(80+4)×25=80+4×25
C. 80×25×4=25×4×80
答案:A
—To say is one thing, but to do is quite _________.
—Yes, it is true. Thanks!
A.other
B.the other
C.others
D.another
下列程序段的输出结果是 [7] 。 #include<iostream.h> void main() {int i=10,sum=0; do{ sum=+sum+i; i=i-2; }while(i>=2);cout<<sum<<end1; }