Added test
This commit is contained in:
parent
daa1c2d90a
commit
5ca4da62dc
1 changed files with 39 additions and 0 deletions
39
src/test/res/ejemplos/Bucles_Josep.java
Normal file
39
src/test/res/ejemplos/Bucles_Josep.java
Normal file
|
@ -0,0 +1,39 @@
|
|||
package ejemplos;
|
||||
|
||||
public class Bucles_Josep {
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
||||
int x=0;
|
||||
int y=0, z=0;
|
||||
|
||||
z=x+y;
|
||||
|
||||
if (z>0)
|
||||
{
|
||||
for(int a=1;a==1;)
|
||||
{
|
||||
a++;
|
||||
if (a == 2)
|
||||
break;
|
||||
a++;
|
||||
}
|
||||
}
|
||||
|
||||
while(z==0)
|
||||
{
|
||||
if (z==0)
|
||||
{
|
||||
z++;
|
||||
}
|
||||
else
|
||||
{
|
||||
z--;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue