gpt4 book ai didi

c - "UNDEFINED REFRENCE TO clrscr();"

转载 作者:行者123 更新时间:2023-12-04 10:55:03 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Function clrscr in C and C++

(5 个回答)


7年前关闭。



#include<stdio.h>
#include<conio.h>
void main()
{
int i=1,a,b,c,choice;
do
{
printf("enter any two numbers\n");
scanf("%d%d",&a,&b);
printf("pressing one add the two numbers\nenter one if you want to\n");
scanf("%d",&choice);
switch(choice)
{
case 1:
{
c=a+b;
printf("the sum of the entered numbers%.1f\n\n:",c);
break;
}
default:
printf("you have entered an invalid");
break;
}
clrscr();
}
while(i==1);
getch();
}

我不知道因为我的同学正在使用 turbo c,这很好,对我来说我使用的是 dev c++,但看起来像 clrscr();不知道编译器帮助。

最佳答案

你同学是在DOS下编程的,显然你不会... conio.h带有 Turbo C 和 DOS ... 所以,删除这些行

#include<conio.h>


clrscr();


getch();

使您的程序编译...

...并且不要使用 %.1f打印一个整数。

... 和 main()必须返回 int
* 并且不要抄袭你的同学...他似乎被困在石器时代*

关于c - "UNDEFINED REFRENCE TO clrscr();",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21750450/

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