标签:
1 public class Solution 2 { 3 public static void main(String[] args) 4 { 5 System.out.println("1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 = " + (1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9)); 6 } 7 }
HW1.6
原文地址:http://www.cnblogs.com/wood-python/p/5743741.html