我正在编写一个简单的程序,我需要根据条件交换两个数字的十位数字。如果num1的十位大于num2的十位,则返回num1。如果 num1 的十位数字小于 num2 的十位数字,则交换十位数字并打印 num1 (与交换的十位数字)。示例:987 123返回 987 并234 356返回 254。
到目前为止,这是我的代码:
public int swapForBigTensPlace (int num1, int num2)
{
int swap;
int a = num1%10;
int b = num1/10%10;
int c = num1/100%10;
int a1 = num2%10;
int b1 = num2/10%10;
int c1 = num2/100%10;
if(b>b1)
return num1;
else if(b1 > b)
swap = supposed to be a, b1, and c next to each other;
return swap;
}
我不知道如何制作它,以便它返回三个相邻的整数,而不是将它们相加。请告诉我如何执行此操作。谢谢你!
蛊毒传说
相关分类