【洛谷学习自留】p5703 苹果采购

【洛谷学习自留】p5703 苹果采购_第1张图片解题思路:

简单的计算,甚至不需要考虑类型,直接计算吧。

代码实现:

import java.util.Scanner;

public class p5703 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        System.out.println(a*b);
    }
}

你可能感兴趣的:(学习)