Advertisement
Guest User

sabeee

a guest
Sep 14th, 2014
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1.  
  2. public class unoSegundaDiapo {
  3. public static void main (String args[]){
  4. int contador=1;
  5.  
  6. while (contador<=100){
  7. if (contador%3==0)
  8. {
  9. System.out.println(contador);
  10. }
  11. contador++;
  12. }
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement