时间:2021-05-19
复制代码 代码如下:
#include <stdio.h>
void cotTime();
main()
{
cotTime();
}
void cotTime()
{
int c, i, nwhite, nother, ndigit[10];
nwhite = nother = 0;
for(i=0;i<10;i++)
{
ndigit[i] = 0;
}
while((c = getchar()) != EOF)
{
switch(c)
{
case '0': case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9':
ndigit[c-'0'] += 1;
break;
case ' ': case '/t': case '/n':
nwhite++; break;
default:
nother++;
break;
}
}
printf("digits = ");
for(i=0;i<10;i++)
{
printf(" %d",ndigit[i]);
}
printf(", white space = %d, other = %d/n", nwhite, nother);
return 0;
}
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
问题当我尝试在switch语句使用String参数时(注意ctrType为字符串)switch(ctrType){case"01":exceptionType=
Switch简介Switch作为选择结构中必不可少的语句也被加入到了Swift中,只要有过编程经验的人对Switch语句都不会感到陌生,但苹果对Switch进行
题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。程序分析:利用while语句,条件为输入的字符不为'\n'.程序设计:importjav
Switch作为选择结构中必不可少的语句也被加入到了Swift中,只要有过编程经验的人对Switch语句都不会感到陌生,但苹果对Switch进行了大大的增强,使
在js中直接添加html语句,js会将html字符串解析成相应的HTML语句,并在前端进行显示。复制代码代码如下:varel=document.createEl