作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这个问题在这里已经有了答案:
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();
}
最佳答案
你同学是在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/
我是一名优秀的程序员,十分优秀!