1

我的代码是这个

#include<stdio.h>
int main(void)
{
    unsigned short height = 0;
    unsigned short width = 0;
    const unsigned short MIN_SIZE = 3;
    printf("Enter the values for the width and the height minimum of %u\n:",
           MIN_SIZE);
    scanf(" %hd %hd", &width, &height);
    if (width < MIN_SIZE)
    {
        printf("The value of width   %u is too small. I set this to %u    \n",
               width, MIN_SIZE);
        width = MIN_SIZE;
    }
    if (height < MIN_SIZE)
    {
        printf
            ("The value of height %u is too small. I setting this to   %u \n"),
            height, MIN_SIZE;
        height = MIN_SIZE;
    }
    for (unsigned int i = 0; i < width; ++i)
    {
        printf("*");
    }
    return 0;
}

例如,当我给出 7 的宽度和 0 的高度时,printf() 会出现奇怪的数字。你能解释一下为什么会这样吗?

4

1 回答 1

6

这可能会在编译时出现警告。提供所有参数后,您需要保留右括号。

printf
            ("The value of height %u is too small. I setting this to   %u \n"),
            height, MIN_SIZE;

可能你的意思是:

printf("The value of height %u is too small. I setting this to   %u \n", height, MIN_SIZE);

主要问题是我们应该使用“%hu”来表示短整数。我会试试这个:

#include<stdio.h>
int main(void)
{
    unsigned short height = 0;
    unsigned short width = 0;
    const unsigned short MIN_SIZE = 3;
    int i ;
    printf("Enter the values for the width and the height minimum of %u\n:", MIN_SIZE);
    scanf(" %hu %hu", &width, &height);
    if (width < MIN_SIZE) {
        printf("The value of width   %hu is too small. I set this to %hu    \n", width, MIN_SIZE);
        width = MIN_SIZE;
    }
    if (height < MIN_SIZE) {
        printf("The value of height %hu is too small. I setting this to %hu \n", height, MIN_SIZE);
        height = MIN_SIZE;
    }
    for (i = 0; i < width; ++i)
    {
        printf("*");
    }
    return 0;
}

关于这个有一个很好的相关讨论:什么是 unsigned short int 的格式说明符?

于 2013-09-10T20:05:42.123 回答