Advertisement
calcpage

C1X5_Sum10.java

Sep 15th, 2011
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1. //Sum10.java    MrG 2011.0915
  2. public class Sum10
  3. {
  4.     public static void main(String[] args)
  5.     {
  6.         System.out.print("1+2+3+4+5+6+7+8+9+10 = ");
  7.         System.out.println(1+2+3+4+5+6+7+8+9+10);
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement