pablosotol

Guia Programacion 1 - Ejercicio 18

Apr 3rd, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.15 KB | None | 0 0
  1. #include<stdio.h>
  2. int main(){
  3.     int c=0;
  4.     while(3){
  5.     c += 1;
  6.     if(c%2==1)continue;
  7.     printf("%d\n",c);
  8.     if(c==10)break;
  9.     }
  10. }
Add Comment
Please, Sign In to add comment