Advertisement
karlakmkj

for loop and while loop

Dec 2nd, 2020
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.30 KB | None | 0 0
  1. class Coffee {
  2.  
  3.   public static void main(String[] args) {
  4.    
  5.     int cupsOfCoffee = 1;
  6.    
  7.    for (int i=1; i<=100; i++) {   // same as-->  while (cupsOfCoffee<=100) {
  8.      
  9.       System.out.println("Fry drinks cup of coffee #" + cupsOfCoffee);
  10.       cupsOfCoffee++;
  11.      
  12.     }
  13.   }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement