我在这里要使用此代码。我基本上想同时使用字符串和变量,但将其保存在变量中
Int a = 27;
Int b = 22;
String question = System.out.println("what is " + a + "+" + b);
System.out.println(question);
答案 0 :(得分:2)
您试图将System.out.println("what is " + a + "+" + b);
的返回值分配给变量question
,但是System.out.println
不返回任何值。您必须首先创建变量,然后打印它,就像这样:
Int a = 27;
Int b = 22;
String question = "what is " + a + "+" + b;
System.out.println(question);
答案 1 :(得分:1)
您可以像在System.out.println中一样轻松地为变量连接字符串。
所以
String question ="what is " + a + "+" + b;
会做这份工作。
答案 2 :(得分:1)
从字符串变量问题中删除System.out.println()。 因此,字符串问题=“什么是” + a +“ +” + b; 当您想问问题时,请使用System.out.println()
打印变量问题答案 3 :(得分:1)
试试看,使用字符串串联:
Int a = 27;
Int b = 22;
String questionStr = "what is " + a + " + " + b;
System.out.println(questionStr);