赞
踩
第1关:编写函数将两个两位数的正整数合并形成一个整数
任务描述
本关任务:编写函数将两个两位数的正整数合并形成一个整数。
#include <stdio.h>
main()
{
int a,b;
scanf("%d%d",&a,&b);
int c=fun(a,b);
printf(“c=%d”,c);
return 0;
}
int fun(int a,int b)
{
int c1,c2,c3,c4;
c1=b%10;
c2=a/10;
c3=b/10;
c4=a%10;
return(c11000+c2100+c3*10+c4);
}
#include <stdio.h> main() { int a,b; scanf("%d%d",&a,&b); int c=fun(a,b); printf("c=%d",c); return 0; } int fun(int a,int b) { int c1,c2,c3,c4; c1=b%10; c2=a/10; c3=b/10; c4=a%10; return(c1*1000+c2*100+c3*10+c4); }
······通关成功······
如有问题,敬请斧正。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。