This commit is contained in:
2026-02-02 03:40:06 +01:00
parent 6841949095
commit 06e2f033d2
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -7,4 +7,5 @@
.idea/ .idea/
*~ *~
*.DotSettings.user *.DotSettings.user
*.html
test
+2 -1
View File
@@ -15,7 +15,7 @@ int *my_factor(int n){
while(tmp > 1){ while(tmp > 1){
if (tmp % div == 0){ if (tmp % div == 0){
cnt ++; cnt ++;
tmp = tmp /div tmp = tmp /div;
} }
else div ++; else div ++;
} }
@@ -41,3 +41,4 @@ int *my_factor(int n){
return rslt; return rslt;
} }