-
Notifications
You must be signed in to change notification settings - Fork 0
/
4.c
51 lines (43 loc) · 987 Bytes
/
4.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*************************************************************************
> File Name: 4.c
> Author: qusijun
> Mail: [email protected]
> Created Time: 2014年05月06日 星期二 10时55分13秒
************************************************************************/
#include<stdio.h>
#include<string.h>
int is_palindrome(int);
int main(void)
{
int num = 178;
char str[10];
sprintf(str,"%d",num);
printf("%s,%d",str,strlen(str));
int max = 0;
int tmp = 0;
for(int i = 100;i<1000;i++)
{
for(int j = 100;j<1000;j++)
{
if(is_palindrome(i*j))
{
tmp = i*j;
}
if(max < tmp)
max= tmp;
}
}
printf("%d",max);
return 0;
}
int is_palindrome(int num)
{
char str[10];
sprintf(str,"%d",num);
for(int i = 0;i<strlen(str)/2;i++)
{
if(str[i] != str[strlen(str)-1-i])
return 0;
}
return 1;
}