怎么在java编程中将数字本末调换位置
展开全部
import java.util.Scanner;
public class Tran {
public static void main(String[] args) {
System.out.println("输入一个整数");
Scanner sc = new Scanner(System.in);
int x = sc.nextInt();
int temp = x;
int i = 1;
int y1 = x%10;
int y2 = 0;
x = x/10;
while(x!=0){
y2 = x%10;
x = x/10;
i *= 10;
}
int xx = y1*i+temp%i-y1+y2;
System.out.println(xx);
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询