This commit is contained in:
unlockable
2022-10-27 14:03:17 +08:00
parent bf3b5851d3
commit 6e32ca4ba1
10 changed files with 257 additions and 0 deletions

11
06/test.c Normal file
View File

@@ -0,0 +1,11 @@
#include <stdio.h>
int main() {
int i = 0;
do {
printf("%d",i);
i++;
}
while (i < 5);
return 0;
}