Advertisement
Felanpro

extended for loop function

Aug 25th, 2016
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. public class program1
  2. {
  3.    
  4.     public static void extended_for_loop(int x, int less_than_variable, int jump)
  5.     {
  6.         int number = x;
  7.         for(number++; number < less_than_variable; number += jump)
  8.         {
  9.             System.out.println(number);
  10.         }
  11.     }
  12.    
  13.     public static void main(String[] args)
  14.     {
  15.         extended_for_loop(1, 11, 3);
  16.     }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement