Advertisement
urksiful

Untitled

Oct 11th, 2016
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1.  
  2.  
  3. /**
  4. *
  5. * @author Hantack
  6. */
  7. public class SumaNumeros {
  8.  
  9. public static void main(String[] args) {
  10. int res = 0;
  11. int cont=1;
  12. while(cont <= 100){
  13. res += cont;
  14. cont++;
  15. }
  16.  
  17. System.out.println("La suma del 1-100 es: "+res);
  18. }
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement