Luogu p5705
输入一个不小于 100100 且小于 10001000,同时包括小数点后一位的一个浮点数,例如 123.4123.4 ,要求把这个数字翻转过来,变成 4.3214.321 并输出。
import java.util.Scanner;
public class Main {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);String input = sc.next(); // number input can be regard as String, and use // String' s methods to manuipulates. for (int i = input.length() - 1; i > - 1; i--) {
System.out.print(input.charAt(i)); // can output one by one.}sc.close();}
}