本題要求實作一個函數,判斷任一給定整數N是否滿足條件:它是完全平方數,又至少有兩位數字相同,如144、676等。
函數接口定義:
int IsTheNumber ( const int N );
其中N是使用者傳入的參數。如果N滿足條件,則該函數必須傳回1,否則傳回0。
裁判測試程式樣例:
#include <stdio.h>
#include <math.h>
int IsTheNumber ( const int N );
int main()
{
int n1, n2, i, cnt;
scanf("%d %d", &n1, &n2);
cnt = 0;
for ( i=n1; i<=n2; i++ ) {
if ( IsTheNumber(i) )
cnt++;
}
printf("cnt = %d\n", cnt);
return 0;
}
/* 你的代碼将被嵌在這裡 */
輸入樣例:
105 500
輸出樣例:
cnt = 6
- 送出結果:
- 源碼:
#include <stdio.h>
#include <math.h>
int IsTheNumber(const int N);
int main()
{
int n1, n2, i, cnt;
scanf("%d %d", &n1, &n2);
cnt = 0;
for (i = n1; i <= n2; i++) {
if (IsTheNumber(i))
cnt++;
}
printf("cnt = %d\n", cnt);
return 0;
}
/* 你的代碼将被嵌在這裡 */
int IsTheNumber(const int N)
{
int flag = 0;
// 滿足完全平方數條件
if ((int)sqrt(N) * (int)sqrt(N) == N)
{
// 判斷是否至少有兩位數相等
int temp[10]; // 存儲數字N的各位數字
int n = N; // N為const,數值不可變的變量
int i = 0;
// 獲得N的各位數字并存進temp數組
while (n != 0)
{
int lastNumber = n % 10;
temp[i] = lastNumber;
n /= 10;
i++;
}
// 周遊temp[],若其中有兩個相同的數字,則flag = 1
for (int j = 0; j < i; j++)
{
for (int k = j + 1; k < i; k++)
{
if (temp[j] == temp[k])
{
flag = 1;
break;
}
}
}
}
return flag;
}