]> git.llucax.com Git - z.facultad/61.07/ejercicios.git/blob - discreta-ej18e.C
Se expanden keywords del svn.
[z.facultad/61.07/ejercicios.git] / discreta-ej18e.C
1 #include <stdio.h>
2
3 int main() {
4   int x, y, w, t;
5   int cont = 0;
6   do {
7          x = 0;
8          y = 3;
9          w = 7;
10          t = 4;
11          cont++;
12   } while ( ( (x != 0) && (y > 0) ) || ( !(w > 0) && (t = 3) ) );
13   printf( "Veces: %d\n", cont );
14 }
15