我正在尝试编写一个程序,它从用户(通过键盘)读取一个整数,将 100 添加到它并显示结果。我所能做的就是让它们像 2 个字符串一样连接,而不是把数字加在一起。我不明白为什么它不会添加它们。
import java.io.*;
public class Program {
public static void main(String[] args) throws IOException {
InputStreamReader isr = new InputStreamReader(System.in);
BufferedReader br = new BufferedReader(isr);
System.out.print("Enter some text: ");
String text = br.readLine();
int number = Integer.parseInt(text);
System.out.println(" Your value + 100 is " + ( 100 + text));
}
}
是我正在使用的代码,并且:
Enter some text: 66
Your value + 100 is 10066
是打印在屏幕上的内容。