證明: (1) (αS+βT)*=αS*+βT*,當α,β∈K; (2)(ST)*=T*S*; (3)(T*)-1=(T-1)*
證明:
(1) (αS+βT)*=αS*+βT*,當α,β∈K;
(2)(ST)*=T*S*;
(3)(T*)-1=(T-1)*
證明:
(1) (αS+βT)*=αS*+βT*,當α,β∈K;
(2)(ST)*=T*S*;
(3)(T*)-1=(T-1)*
第1題
A.int s = 0, n1 = n; while (n1 > 0) { int t = n1 % 10; s += t * t * t; n1 /= 10; }
B.int s = 0, n1 = n; while (n1 > 0) { int t = n1 / 10; s+= t * t * t; n1 %= 10; }
C.int n1,s; for(n1 = n; n1>0; n1 /= 10) { int t = n1%10; s += t * t * t; }
D.int n1,s = 0; for(n1 = n; n1>0; n1 %= 10) { int t = n1 / 10; s += t * t * t; }
第3題
有下列程序:
main
{int i,s=0,t[]={1,2,3,4,5,6,7,8,9};
for(i=0;i<9;i+=2)s+=*(t+i);
printf("%d\n",s);
}
程序執(zhí)行后的輸出結果是()。
A.A.45
B.20
C.25
D.36
第4題
A.兩部門經濟中,I=S
B.三部門經濟中,I=S+(T-G)
C.四部門經濟中,I=S+(-T)+(X-M+Kr)
D.四部門經濟中,I=S+(T-G)+(M-X+Kr)
第5題
A.I=S+(T-G)+(M-X)
B.I=S+T-G+M
C.I=S+(T-G)
D.I=S+(M-X)
第6題
有下列程序: main() {inti,s=0,t[]={1,2,3,4,5,6,7,8,9}; for(i=0;i<9;i+=2)s+=*(t+i); printf(%d\n,s); } 程序執(zhí)行后的輸出結果是
A.20
B.45
C.36
D.25
第7題
在給定程序中,函數(shù)fun的功能是:根據(jù)以下公式求π值,并作為函數(shù)值返回。
例如,給指定精度的變量eps輸入0.0005時,應當輸出Pi=3.140578。 請改正程序中的錯誤,使它能得出正確結果。 注意:不要改動main函數(shù),不得增行或刪行,也不得更改程序的結構。 include include include double fun(double eps) {double s,t; int n=1; s=0.0; /************found************/ t=0; while(t>eps) {s+=t; t=t*n/(2*n+1); n++; } /************found************/ return(S); } main() {double x; printf("\nPlease enter a preciSion:")j scanf(”%1f”,&x); printf("\neps=%1f,Pi=%1f\n\n",x,fun(x)); )
第8題
double pi(double eps) { double s=0.0,t=1.0; int n; for(【 】 ;t>eps;n++) { s+=t; t=n* t/(2*n+1); } return(2.0* 【 】 ); }
第9題
下面pi函數(shù)的功能是根據(jù)以下的公式,返回滿足精度ε要求的π值。請?zhí)羁铡?/p>
double pi(double eps)
{double s=0.0,t=1.0;
intn;
for(______;t>eps;n++)
{s+=t;
t=-n*t/(2*n+1):}
return(2.0*______);}