mirror of
https://github.com/Ed94/LangStudies.git
synced 2024-11-10 04:14:53 -08:00
29 lines
130 B
Plaintext
29 lines
130 B
Plaintext
if (x)
|
|
{
|
|
x = 1;
|
|
}
|
|
else
|
|
{
|
|
x = 2;
|
|
}
|
|
|
|
|
|
if ( y )
|
|
{
|
|
x = 2;
|
|
}
|
|
|
|
if (a)
|
|
b = 1;
|
|
|
|
if (a)
|
|
if (b)
|
|
|
|
if (c)
|
|
if (d)
|
|
{}
|
|
else
|
|
{}
|
|
else
|
|
{}
|