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