gpt4 book ai didi

c - 如何通过scanf读取文件中的不同行输入

转载 作者:行者123 更新时间:2023-11-30 20:28:29 25 4
gpt4 key购买 nike

我正在尝试使用 scanf 通过文件读取不同的输入行。我只能读取第一行并存储它。

这是我写的代码。

#include <stdio.h>
#include <string.h>

int imageWidth, imageHeight, safeRegionStart, safeRegionWidth;

main(void)
{
int i=0, j=0;
int totalP, pixel, totalSafeP, concat;
int unsigned r,g,b;

scanf("%d %d %d %d", &imageWidth, &imageHeight, &safeRegionStart, &safeRegionWidth);
totalP = imageWidth * imageHeight ;
totalSafeP = imageHeight * safeRegionWidth;
char arr[512][50];
char arr1[imageWidth][imageHeight];

printf("total # of pixels: %d\nTotal # of safe Pixels: %d\n", totalP, totalSafeP);

memset(arr,0x0,sizeof(arr));


while(i!=totalP)
{
i++;
scanf("%d", &pixel);

/*bit shifting to get r,g,b*/
int r = pixel << 8;
r = (unsigned int)logicalRightShift(r, 24);

int g = pixel << 16;
g = (unsigned int)logicalRightShift(g, 24);

int b = pixel << 24;
b = (unsigned int)logicalRightShift(b, 24);
//printf("%d) r:%d , g:%d , b:%d\n",i, r,g,b);
fillDescription(arr, r, g, b);


}/*End for scanning all pixels*/
}/*end main*/

最佳答案

我的建议是永远不要使用 scanf (或 fscanf)来读取输入。使用其他方法(fgets 等)读取输入,然后解析输出。可能使用 sscanf,也可能使用其他系统。我看到人们直接使用 scanf 读取的错误太多。

关于c - 如何通过scanf读取文件中的不同行输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6258176/

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