MZH111121 @ 2022-12-02 20:44:01
c++头文件不是#include <iostream>吗?
by Katz @ 2022-12-02 20:44:17
?
by Katz @ 2022-12-02 20:45:06
谁告诉你c++只有iostream?
by Vocaloid世末歌者 @ 2022-12-02 20:50:26
@MZH111121 远远不止iostream!还有万能头、cmath等等约几百个头文件(我不确定一共有多少个,反正很多)
by pengzihao @ 2022-12-02 20:52:54
这里?
by drop @ 2022-12-02 20:53:59
你在提交的时候用成C了,应该用C++
C里面没有iostream,所以编译错误
by drop @ 2022-12-02 20:59:44
C
自动识别语言
by 2c_s @ 2022-12-02 21:02:59
@MZH111121 或许你要找的是C++而不是C?
不过我个人在编程上更推荐<bits/stdc++.h>,不容易出错
by CuSO4_ @ 2022-12-02 21:07:54
你用了 C 语言,C 没有 iostream
这个头文件,要用 C++(一大堆,随便选)
但如果你非要用 C 语言……
#include <stdio.h>
int main()
{
int a,b;
scanf("%d%d",&a,&b);
printf("%d",a + b);
return 0;
}
by EllaSun2009 @ 2022-12-02 21:26:07
回复
by luogu_MeiFengqi @ 2022-12-04 08:37:33
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b;
scanf("%d%d",&a,&b);
printf("%d",a+b);
return 0;
}
万能头