Guest User

Untitled

a guest
Jun 24th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.15 KB | None | 0 0
  1. class Loop{
  2.     public static void main(String a[]){
  3.         int sum = 0;
  4.         for (int i=1; i<=5; i++){
  5.             sum += i;
  6.         }
  7.         System.out.println(sum);
  8.     }
  9. }
Add Comment
Please, Sign In to add comment