作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在一行中获取出生日期:
#include <stdio.h>
int main()
{
int BirthYear,BirthMonth,BirthDay;
printf("Please enter your birth date: ");
scanf("%d",&BirthYear);
printf("/");
scanf("%d",&BirthMonth);
printf("/");
scanf("%d",&BirthDay);
return 0;
}
这是我的输出:
Please enter your birth date: YYYY
/MM
/DD
但我想得到这样的东西:
Please enter your birth date: YYYY/MM/DD
在输出中,它在每次 scanf() 之后转到下一行而不使用\n。
最佳答案
这是使用 ansi 控制字符的解决方法。我不会这样做,但只是为了表明这是可能的:
#define PREVLINE "\033[F"
#define MSG "Please enter your birth date: "
int main(void) {
int BirthYear,BirthMonth,BirthDay;
printf(MSG);
scanf("%d",&BirthYear);
printf(PREVLINE MSG "%d/", BirthYear);
scanf("%d",&BirthMonth);
printf(PREVLINE MSG "%d/%d/", BirthYear, BirthMonth);
scanf("%d",&BirthDay);
printf("You entered: %d/%d/%d\n", BirthYear, BirthMonth, BirthDay);
}
请注意,这不是可移植的。终端需要支持这一点才能工作。 AFAIK 没有 100% 可移植的方式来实现这一点。
scanf
的返回值来检测错误。
fflush(stdout);
可能是个好主意每个之后
printf
陈述。
关于c - 如何在不转到下一行的情况下在 C 中使用 printf() 和 scanf()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64555471/
我是一名优秀的程序员,十分优秀!