由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - STL的问题(C++)
相关主题
C++编程问题,关于static member 在class中的使用,谢谢一道面试题
c++ 得最基本问题弱问c++里有没有NULL这个keyword?
请教一个简单字符串程序 (转载)【请教】mpicc 和 mpiCC编译问题
C++ vector 到底能多大关于C++中 extern "C"的问题。
question on reserve() in vector container.C++新手求推荐算法书籍
对STL的set比较熟悉的进来看看Urgent question: AIX, C++11, Shared Object
C++ Segment Fault今天的学习成果
c preprocess questionshortest path algorithm(dijkstra)的变形
相关话题的讨论汇总
话题: min话题: endl话题: cout话题: inlcude话题: stl
进入Programming版参与讨论
1 (共1页)
x******a
发帖数: 6336
1
抄了cplusplus上面的一个小程序,g++是提示下面的错误,请问怎么回事?谢谢
min.cpp:2:2: error: invalid preprocessing directive #inlcude
name's-MacBook-Pro:~ name$ emacs min.cpp
#include
#inlcude
using namespace std;
int main()
{
cout<<"min(1,2)"<< min(1,2)< cout <<"min(1, 3.5)"<< min(1.0, 3.5)< cout<< "min(abcd, adccd)"<< min('a', 'b')< return 0;
}
h*******s
发帖数: 8454
2
include拼错了

【在 x******a 的大作中提到】
: 抄了cplusplus上面的一个小程序,g++是提示下面的错误,请问怎么回事?谢谢
: min.cpp:2:2: error: invalid preprocessing directive #inlcude
: name's-MacBook-Pro:~ name$ emacs min.cpp
: #include
: #inlcude
: using namespace std;
: int main()
: {
: cout<<"min(1,2)"<< min(1,2)<: cout <<"min(1, 3.5)"<< min(1.0, 3.5)<
x******a
发帖数: 6336
3
oh,i see
thank you. stupid me

【在 h*******s 的大作中提到】
: include拼错了
r****t
发帖数: 10904
4
建议把标题改了

【在 x******a 的大作中提到】
: oh,i see
: thank you. stupid me

f******i
发帖数: 82
5
哈哈,我笑了
p**o
发帖数: 3409
6
自己打了一遍,而不是copy-paste,值得鼓励

【在 x******a 的大作中提到】
: oh,i see
: thank you. stupid me

g***i
发帖数: 4272
7
亮了
1 (共1页)
进入Programming版参与讨论
相关主题
shortest path algorithm(dijkstra)的变形question on reserve() in vector container.
Is this correct?对STL的set比较熟悉的进来看看
[合集] Debugging large macroC++ Segment Fault
请高人解释一下为啥这个输出总是"HELLO-ERR"c preprocess question
C++编程问题,关于static member 在class中的使用,谢谢一道面试题
c++ 得最基本问题弱问c++里有没有NULL这个keyword?
请教一个简单字符串程序 (转载)【请教】mpicc 和 mpiCC编译问题
C++ vector 到底能多大关于C++中 extern "C"的问题。
相关话题的讨论汇总
话题: min话题: endl话题: cout话题: inlcude话题: stl