Advertisement
Guest User

12daysofchristmas

a guest
Jan 26th, 2015
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. public class TwelveDaysofChristmas
  2. {
  3. public static void main(String[] args)
  4. {
  5. System.out.println("Day presents received Total Presents");
  6.  
  7. presents1();
  8. }
  9. public static void presents1()
  10. {
  11. for (int a =1; a<=25; a++)
  12. {
  13. System.out.println(a+" "+a+" "+(a*(a+1))/2);
  14. }
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement