Advertisement
martinvalchev

Numbers From 1 To 100

Nov 4th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.17 KB | None | 0 0
  1. public class NumbersFrom1To100 {
  2.     public static void main(String[] args) {
  3.      for (int a = 1;  a <= 100 ; a++) {
  4.          System.out.println(a);
  5.      }
  6.     }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement