Auto commit

This commit is contained in:
2025-02-21 09:42:11 +08:00
parent aac550fd91
commit 88a9ab7957
2 changed files with 26 additions and 0 deletions
@@ -0,0 +1,13 @@
#include <stdio.h>
int main(){
int i;
for(i=5;i<=100;i++){
if(i%5==0 || i%7==0){
printf("%d ", i);
}
}
return 0;
}