用Java语言 Say hello to integers? Yes! 你没看错! 现在我们来向整数说“你好~” 本题读入两个整数,然后输出对她们的问候语。 输入格式: 在一行中给出两个绝对值不超过32767的整数A和B,两数之间有一个空格 输出格式: 在一行中输出 "Hello, A and B!" (其中A和B用实际输入的整数代替)
时间: 2024-02-13 07:00:49 浏览: 115
好的,这是一个简单的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中,并运行它,然后输入两个整数,程序将输出问候语。
相关问题
用Java语言 编写代码 题目:Say hello to integers? Yes! 你没看错! 现在我们来向整数说“你好~” 本题读入两个整数,然后输出对她们的问候语。 输入格式: 在一行中给出两个绝对值不超过32767的整数A和B,两数之间有一个空格 输出格式: 在一行中输出 "Hello, A and B!" (其中A和B用实际输入的整数代替)
好的,我可以帮你编写这个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 + "!");
}
}
```
以上代码会读入两个整数,然后输出对它们的问候语。希望能解决你的问题!
Say hello to integers? Yes! 你没看错! 现在我们来向整数说“你好~” 本题读入两个整数,然后输出对她们的问候语。 输入格式: 在一行中给出两个绝对值不超过32767的整数A和B,两数之间有一个空格 输出格式: 在一行中输出 "Hello, A and B!" (其中A和B用实际输入的整数代替)Java
好的,下面是 Java 代码实现:
```java
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int a = scan.nextInt();
int b = scan.nextInt();
System.out.println("Hello, " + a + " and " + b + "!");
}
}
```
输入格式要求输入两个整数,可以使用 `Scanner` 类来读取输入。然后使用 `System.out.println` 输出问候语,注意要将整数转换成字符串并与其他字符串连接起来。
阅读全文