Skip to content

Commit 215f604

Browse files
committed
TheAlgorithms#36 【示例任务】搜索成员控件匹配失败
1 parent 24eecec commit 215f604

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Misc/PalindromicPrime.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public static void funtioning(int y){
3232
int num = 2;
3333
while(count < y){
3434
if(prime(num) && num == reverse(num)){ // number is prime and it's reverse is same
35-
count++; // counts check when to terminate while loop
35+
count++; // check when to terminate while loop
3636
System.out.print(num + "\n"); // Print the Palindromic Prime
3737
}
3838
num++; // inrease iterator value by one

0 commit comments

Comments
 (0)