<span style="color:#009900;">/*
*Copyright (c) 2014,烟台大学计算机学院
*All rights reserved.
*文件名称:main.cpp
*作者:姜 甜 甜
*完成日期:2014年11月24日
*版本号:v1.0
*问题描述:输出数组中各个字母,数字的数目
*输入描述:无
*程序输出:输出数组中各个字母,数字的数目
*/</span>
#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
int a[10]= {};
char str[50]= {"tel:17862817888,QQ:565634986"};
int i=0;
while(str[i]!='\0')
{
if(str[i]>='0'&&str[i]<='9')
{
++a[str[i]-48 ];
}
i++;
}
for(i=0; i<10; i++)
{
cout<<i<<"出现的次数为:"<<a[i]<<endl;
}
return 0;
}
小结:将数组的下标表示:将字符型转化成数据型,
精华在于a[]的表示,