Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. public class Main{
  2. public static void main(String[] args)
  3. {
  4. int sum = 0;
  5. for(int i=55; i<=99; i++)
  6. {
  7. sum += i;
  8. }
  9. System.out.println("Sum: " + sum);
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement