add crossnote and mv textfile

This commit is contained in:
2025-10-03 19:17:46 +09:00
parent add7307893
commit e955ec672b
18 changed files with 7404 additions and 19 deletions

21
src/test2.cm 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]);
}
}
}