在焊接芯体线圈时必须使用()助焊剂。
A、酸性
B、中性
C、焊油
D、盐酸
参考答案:B
使用VC++6.0打开考生文件夹下的源程序文件2.cpp。阅读下列函数说明代码。函数num(char *str)用于返回字符串中非数字的个数。 例如:abc123abc45 返回值为:6 将函数num补充完整。 注意:请勿改动主函数。 试题程序: #include<iostream.h> int num(char *str) int main() char str[1024]; cout<<"please input a string:"<<end1; cin.getline(str,1024); cout<<"char number is"<<num(str)<<end1; return 0;