update test case

This commit is contained in:
2025-10-02 10:50:33 +09:00
parent cc3de91036
commit 844f29a803
7 changed files with 337 additions and 0 deletions

21
src/res/test.2.txt Normal file
View File

@@ -0,0 +1,21 @@
void main(void)
{
int i; int x[5];
i = 0;
while( i < 5 )
{
x[i] = input();
i = i + 1;
}
i = 0;
while( i <= 4 )
{
if( x[i] != 0 )
{
output(x[i]);
}
}
}