1.一个M*N棋盘,每个格子上放着一个礼物,只能往下或者往右,到右下角拿到的礼物价值最多是多少。 2.选择排序 3.除去字符串多余的_,比如____ab__d_dss___变为ab_d_dss 4.质因数分解 1. import java.util.Scanner; public class text { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); String[] num = scanner.nextLin...