gpt4 book ai didi

c - 为什么这个 C 程序在 Windows 上编译时显示不同的输出?

转载 作者:可可西里 更新时间:2023-11-01 11:31:58 27 4
gpt4 key购买 nike

现在,我正在 ProjectEuler.net 上做一些问题,这是我为问题 #4 编写的代码:

#include <assert.h>
#include <errno.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>

int isPalindrome(int num)
{
int length = floor(log10(abs(num))) + 1;
int index = 0;
int firstChar, lastChar;

while (index <= (length / 2)) {

firstChar = (num % (int)pow(10, length - index)) / pow(10, length - 1 - index);
lastChar = (num % (int)pow(10, (index + 1))) / (pow(10, index));

if (firstChar != lastChar) {
return 0;
}
index++;
}
return 1;
}

int main(int argc, char *argv[])
{
clock_t begin, end;
double time_spent;
int result = 0;
int x, y;

printf("Is 998001 a palidrome? %d\n", isPalindrome(998001));
printf("Is 987789 a palidrome? %d\n", isPalindrome(987789));
printf("Is 884448 a palidrome? %d\n", isPalindrome(884448));

/* clock start */
begin = clock();

for (x = 999; x > 99; x--) {
for (y = 999; y > 99; y--) {
if (isPalindrome(x * y) && x * y > result) {
result = x * y;
printf("Found palindrome: %d\tX: %d\tY: %d\n", result, x, y);
}
}
}

end = clock();
/* clock end */
time_spent = (double)(end - begin) / CLOCKS_PER_SEC;

printf("ANSWER: %d\n", result);
printf("ELAPSED TIME: %f\n", time_spent);

return 0;
}

虽然不漂亮,但是很管用。当我在 GNU/Linux 上编译它时,它工作正常。但是在 Windows 7 64 位上,我得到这个输出:

Windows output

预期输出:

Linux output

这就是它变得奇怪的地方。如果您交换第 17 行和第 18 行(以 firstChar 和 lastChar 开头的行),它在 Windows 和 GNU/Linux 上都能正常工作。

这是怎么回事?我像这样用 mingw32 gcc 编译:

gcc -v prob4.c -o prob4.exe -lm

这是编译器输出:http://pastebin.com/rtarBtNY

说真的,伙计们到底发生了什么事?

最佳答案

float 的问题。如果你有以下代码:

pow(10, 2)

您希望返回的值为 100。可能是,但不能保证。在一定误差范围内,您将获得接近 100 的值。

如果返回的值是 100+d(其中 d 在精度范围内),那么当该值被转换为 int 时,您返回 100。如果返回的值是 100-d,那么当该值转换为 int 时,您将返回 99

关于c - 为什么这个 C 程序在 Windows 上编译时显示不同的输出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18497712/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com