将int转换为C中的空格

时间:2015-06-24 11:15:56

标签: c

我试图将用户输入整数转换为空格。例如,当int = 3时,将有3个空格作为输出。我需要将数字0-15转换为0-15个空格。我是编程新手,所以非常感谢任何帮助!

1 个答案:

答案 0 :(得分:0)

您必须阅读有关printf()功能

的内容
int x;
if (scanf("%d", &x) == 1)
    printf("%*s/ <--- there are %d white spaces behind\n", x, "", x);
else
    printf("wrong input, an integer expected\n");