当前位置:   article > 正文

练习-编写函数将两个两位数的正整数合并形成一个整数

编写函数将两个两位数的正整数合并形成一个整数

第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);
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18

······通关成功······
如有问题,敬请斧正。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/252464
推荐阅读
相关标签
  

闽ICP备14008679号