Este:
Código
#include <stdio.h> int main() { int a; while ( a > 5 ) { } return 0; }
O este:
Código
#include <stdio.h> int main() { int a; do { if ( a > 5 ) } while ( a > 5 ); return 0; }
|
|||
|
Tema destacado: Recuerda que debes registrarte en el foro para poder participar (preguntar y responder) |
|
|