在vc6.0里面输入以下程序为什么不能正常运行#include <iostream.h>

#include <iostream.h>
void simon(int);
int main()
{
simon(3);
cout<<"Pick an integer:";
int count;
cin>>count;
simon(count);
cout<<"Done!"<<endl;
return 0;
}
void simon(int n)
{
cout<<"Simon says touch yours toes"<<n<<"times"<<endl;
}

using namesapce std;
或者 你都加上 std::cout std::cin std::endl
温馨提示:内容为网友见解,仅供参考
第1个回答  2012-02-02
#include<iostream>
using namespce std;//以下不变
第2个回答  2012-02-02
你编译器的问题,我这运行正确
第3个回答  2012-02-02
说明vc这个程序不给力啊
第4个回答  2012-02-02
我的怎么能运行呀,虽然看不懂你的程序!呵呵
相似回答