兰聪


私信TA

用户名:lc2024228712

访问量:3176

签 名:

等  级
排  名 156
经  验 7205
参赛次数 8
文章发表 18
年  龄 0
在职情况 学生
学  校 鄂州职业大学
专  业

  自我简介:

解题思路:


使用StringBuilder的reverse()方法反转字符串


参考代码:

import java.util.Scanner;

public class 反置数01 {

	public static void main(String[] args) {

		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();

		String str1 = n + ""; // int类型转成字符串
		String str2 = m + "";
		
		n = Integer.parseInt(new StringBuilder(str1).reverse().toString()); // 调用reverse()方法反转字符串,然后赋值给n
		m = Integer.parseInt(new StringBuilder(str2).reverse().toString());
		
		String str3 = (n + m) + "";
		
		int sum = Integer.parseInt(new StringBuilder(str3).reverse().toString());
		System.out.println(sum);
	}

}


 

0.0分

5 人评分

  评论区

  • «
  • »