用Java语言 Say hello to integers? Yes! 你没看错! 现在我们来向整数说“你好~” 本题读入两个整数,然后输出对她们的问候语。 输入格式: 在一行中给出两个绝对值不超过32767的整数A和B,两数之间有一个空格 输出格式: 在一行中输出 "Hello, A and B!" (其中A和B用实际输入的整数代替)
时间: 2024-02-13 22:00:49 浏览: 103
利用JAVA,念整数。
好的,这是一个简单的Java程序,可以实现你的需求:
```
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
System.out.println("Hello, " + a + " and " + b + "!");
}
}
```
你可以将这段代码复制到你的Java IDE中,并运行它,然后输入两个整数,程序将输出问候语。
阅读全文