输入一字符串(换行为结束标志)统计其中数字(0,1,2,…,9不单独统计)、空白和其它字符出现的次数。
(1)digit=0,blank=0,other=0
(2)c>='0'&&c<='9'
(3)++other或者other++
暂无解析
设
structstudent
{
第3页
intno;
charname[12];
floatscore[3];
}s1,*p=&s1;
用指针法给s1的成员no赋值1234的语句是____________。
C语言程序编译时,程序中的注释部分()
在文件使用方式中,字符串"rb"表示()