蓝桥网试题 java 入门训练 A+B问题

 -------------------------------------------------------------------------------------------------------------------------

本题主要是讲蓝桥杯的注意事项的,细节决定成败

-------------------------------------------------------------------------------------------------------------------------

我的算法

1 import java.util.Scanner;
2 class Main {
3     public static void main(String[] args) {
4         Scanner sc = new Scanner(System.in);
5         int a = sc.nextInt();
6         int b = sc.nextInt();
7         System.out.println(a+b);
8     }
9 }
原文地址:https://www.cnblogs.com/loveluking/p/6034273.html