#include <stdio.h>
void main()
{
int a,b;
int x,y,z,m;
printf("input the first number:");
scanf("%d",&a);
printf("input the second number:");
scanf("%d",&b);
x=a/10;
y=b/10;
z=a-a/10*10;
m=b-b/10*10;
printf("%d%d%d%d",x,y,z,m);
}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-09-15
  • 2021-10-02
  • 2022-12-23
  • 2021-11-23
  • 2022-12-23
  • 2021-12-14
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案