更新0070.爬楼梯完全背包版本的 Java 语言版本

This commit is contained in:
Echo0701
2023-11-28 22:06:53 +08:00
parent 1043b7740e
commit 71dd313eeb

View File

@ -143,9 +143,9 @@ int main() {
import java.util.Scanner;
class climbStairs{
public static void main(String [] args){
Scanner sc=new Scanner(System.in);
Scanner sc = new Scanner(System.in);
int m, n;
while(sc.hasNextInt()){
while (sc.hasNextInt()) {
// 从键盘输入参数,中间用空格隔开
n = sc.nextInt();
m = sc.nextInt();