Initial commit
This commit is contained in:
commit
a52d26a18e
24 changed files with 1091 additions and 0 deletions
22
src/test/res/ejemplos/Test_8.java
Normal file
22
src/test/res/ejemplos/Test_8.java
Normal file
|
@ -0,0 +1,22 @@
|
|||
package ejemplos;
|
||||
|
||||
public class Test_8 {
|
||||
|
||||
public static void main(String[] args)
|
||||
{
|
||||
int x=1;
|
||||
|
||||
if (x==1)
|
||||
{
|
||||
x=2;
|
||||
}
|
||||
x=5;
|
||||
x=6;
|
||||
if (x==2)
|
||||
{
|
||||
x=7;
|
||||
}
|
||||
if (x==3) x=8;
|
||||
x=9;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue