gpt4 book ai didi

c - 更新上一行而不是打印新行

转载 作者:太空宇宙 更新时间:2023-11-03 23:43:44 26 4
gpt4 key购买 nike

这是一个简单的c 程序。它需要两个整数并将它们相加。在此代码中,我想用新行更新上一行而不是创建新行,任何人都可以帮助我解决这个问题。

#include <stdio.h>
#include <stdlib.h>

int main()
{
int a,b;
printf("Enter two integer to add\r");
scanf("%d%d",&a,&b);
a=a+b;
printf("Your value is -- %d",a);

return 0;
}

我使用\r 而不是\n 来使光标回到开头。我在程序控制台中输入了从一开始就写的数据。但是下一行“你的值(value)是......”作为新行打印,我想删除第一行然后输入值并打印下一行“你的值(value)......”。我怎么做?请帮助我

最佳答案

你不能像那样在终端中向上移动,除非使用一些复杂的库作为 curses。您可以使用“清除屏幕”技巧,也许这会达到您想要的效果。

#include <stdio.h>
#include <stdlib.h>

int main()
{
int a,b;
system("clear"); // or "cls" on windows
printf("Enter two integer to add\r");
scanf("%d%d",&a,&b);
system("clear"); // or "cls" on windows
a=a+b;
printf("Your value is -- %d",a);

return 0;
}

关于c - 更新上一行而不是打印新行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39434480/

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