算法训练 RP大冒险

算法训练 RP大冒险_第1张图片
这个题好像没有什么正确的答案吧,可能是我孤陋寡闻了,还望大佬指点。

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		int n = scanner.nextInt();
		if(n > 10)
			n %= 10;
		System.out.println((int)(n*Math.random()));
	}
}

你可能感兴趣的:(蓝桥杯)