Advertisement
mnapior1

E6.1d

Oct 23rd, 2014
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1.  
  2. public class Stuff {
  3.  
  4. public static void main(String[] args)
  5. {
  6. int a;
  7. int b = 10;
  8. for( a = 1; a <= b; a++)
  9. {
  10. if(a%2 ==0)//Even Numbs
  11. {
  12.  
  13. }
  14. else//Odd Numbs
  15. {
  16. System.out.println(a);
  17. }
  18. }
  19. }
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement