cgorrillaha

Untitled

Nov 13th, 2020
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. public class DoinLoop {
  2.     public static void main(String[] args) {
  3.         int sum=0;
  4.         int count=0;
  5.         final int LIMIT=20;
  6.  
  7.         while(count<LIMIT){
  8.             sum=sum+count;
  9.             count++;
  10.         }
  11.     }
  12. }
  13.  
Advertisement
Add Comment
Please, Sign In to add comment