第七次实验课代码

添加C04~C07
This commit is contained in:
2025-10-29 00:52:52 +08:00
parent 1986bbbe3e
commit 1c869f816f
24 changed files with 761 additions and 3 deletions

View File

@@ -9,7 +9,6 @@ public class NumberCounter {
hash[(int)(num%10)]++;
num/=10;
}
for(int i : hash)
System.out.print(i+" ");
System.out.println();