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

P64

时间:2014-07-22 22:34:12      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:blog   io   2014   re   c   amp   

#include<stdio.h>
void fun(long s,long *t)
{
	int d;
	long s1=1;
	*t=0;
	while(s>0)
	{
		d=s%10;
		if(d%2!=0)
		{*t=d*s1+*t;
		s1*=10;
		}
		s/=10;
	}
}
void main()
{
	long s,t;
	printf("\nPlease enter:");
	scanf("%ld",&s);
	fun(s,&t);
	printf("The result is:%ld\n",t);
}

P64,布布扣,bubuko.com

P64

标签:blog   io   2014   re   c   amp   

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

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