不论商业汇票还是银行汇票都需要经过承兑后才能生效,商业承兑汇票属于商业汇票,银行承兑汇票属于银行汇票。()
参考答案:错
淬火碳钢在200~300℃时回火,其残余奥氏体可能转变为回火屈氏体或上贝氏体。()
下列程序的功能是:求出ss所指字符串中指定字符的个数,并返回此值。例如,若输入字符串123412132,指定字符1,则输出3。请填空。 #include<conio.h> #include<stdio.h> #define M 81 int fun(char *ss,char c) int i=0;for(;______;ss++) if( *ss==c)i++:return i; main( ) char a[M],ch;printf("\nPlease enter a string:");gets(a);printf("\nPlease enter a char:");ch=getchar( );prinff("\nThe number of the char is:%d\n",fun(a,ch));