gpt4 book ai didi

c - 如何在c中打印无符号 float

转载 作者:行者123 更新时间:2023-12-01 09:01:01 24 4
gpt4 key购买 nike

实际上我的值是 x = 1041039360y = 93741056

在 c 程序中执行除法时,如 y/x 即 (93741056/1041039360),答案是 -0.090045641。

我想从答案中删除 (-) 减号。

如何获取..?

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <stdbool.h>
#include <unistd.h>

#ifdef _SC_PHYS_PAGES


size_t getTotalSystemMemory(){
long pages = sysconf(_SC_PHYS_PAGES);
long page_size = sysconf(_SC_PAGE_SIZE);
return pages * page_size;
}

size_t getFreeSystemMemory(){
long pages = sysconf(_SC_AVPHYS_PAGES);
long page_size = sysconf(_SC_PAGE_SIZE);
return pages * page_size;
}
#endif

bool eat(long total,int chunk){
long i;
for(i=0;i<total;i+=chunk){
short *buffer=malloc(sizeof(char)*chunk);
if(buffer==NULL){
return false;
}
memset(buffer,0,chunk);
}
return true;
}

int main(int argc, char *argv[]){


printf("Currently total memory: %zd\n",getTotalSystemMemory());
printf("Currently avail memory: %zd\n",getFreeSystemMemory());

printf("Percentage: %f %\n",(
(getFreeSystemMemory()/1024*1024)/(getTotalSystemMemory()/1024*1024)
));


}

最佳答案

在这个表达式中:

(getFreeSystemMemory()/1024*1024)/(getTotalSystemMemory()/1024*1024)

所有的子表达式都是整型的,所以结果也是整型的。因此,除法运算也是整数除法而不是浮点除法。然后您尝试将该整数类型打印为 float ,即 undefined behavior .

您需要至少将上述表达式的一部分转换为浮点类型,以便表达式的其余部分以浮点形式完成:

((double)getFreeSystemMemory()/1024.0*1024.0)/((double)getTotalSystemMemory()/1024.0*1024.0)

这应该会打印出您期望的结果。

关于c - 如何在c中打印无符号 float ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31877772/

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