在Java中,我們可以使用多種方式輸出數學和英語成績。下面是幾種常用的方法:
public class Score { public static void main(String[] args) { int mathScore = 90; int englishScore = 80; // 方法一:使用System.out.println()方法分別輸出 System.out.println("數學成績為:" + mathScore); System.out.println("英語成績為:" + englishScore); // 方法二:使用System.out.printf()方法輸出 System.out.printf("數學成績為:%d,英語成績為:%d", mathScore, englishScore); // 方法三:使用StringBuilder類進行字符串拼接 StringBuilder sb = new StringBuilder(); sb.append("數學成績為:").append(mathScore).append("\n"); sb.append("英語成績為:").append(englishScore); System.out.println(sb.toString()); } }
以上三種方法均可以輸出數學和英語成績,具體選擇哪種方法取決于個人的習慣和需求。需要注意的是,第三種方法需要使用StringBuilder類進行字符串拼接。
上一篇python相關的圖像
下一篇css圖片拉伸全圖