码迷,mamicode.com
首页 > 其他好文 > 详细

P95

时间:2014-07-27 11:32:32      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:

#include<stdio.h>
void fun(char *s,int *t)
{
	int i,n=0;
	for(i=0;s[i]!=0;i++)
		if(s[i]>='0'&&s[i]<='9')
			n++;
		*t=n;
}
main()
{
	char s[80]="asdf45edx7sd7";
	int t;
	printf("\nThe original string is :%s\n",s);
	fun(s,&t);
	printf("\nThe result is :%d\n",t);
}

P95

标签:

原文地址:http://blog.csdn.net/u013116579/article/details/38150903

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!