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

P52

时间:2014-07-22 00:08:33      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:io   re   c   amp   res   print   

#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 s:");
	scanf("%ld",&s);
	fun(s,&t);
	printf("The result is :%ld\n",t);
}

P52,布布扣,bubuko.com

P52

标签:io   re   c   amp   res   print   

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

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