C++ Header File Error: 'iosteam' vs 'iostream'
There is a typo in your code. The correct header file name is 'iostream' instead of 'iosteam'. Here is the corrected code:
#include<iostream>
int main() {
std::cout << 'Hello, World!' << std::endl;
return 0;
}
This code prints 'Hello, World!' to the console.
原文地址: https://www.cveoy.top/t/topic/pSCG 著作权归作者所有。请勿转载和采集!