- 第一个代码
#include <studio.h>
int main() {
std::cout << "apple" << endl << "banana";
}
- 第二个代码
#include <iostream>
using namespace std;
int main(void) {
cout << "apple" << endl;
cout << "banana" << endl;
}
为什么我错了?我知道答案是第二个,但我想知道为什么我的第一个代码是错误的。请帮我!