超级送分题!!!快来啊!(50分)

  • 主题发起人 主题发起人 tt55
  • 开始时间 开始时间
T

tt55

Unregistered / Unconfirmed
GUEST, unregistred user!
刚刚学C#,还不会写程序,刚刚按书上写了段代码
#include <iostream>
#include <string>
using namespace std;
int main()
{ string user_name;
cout <<"please enter your first name";
cin >> user_name;
cout << '/n'
<< "hello,"
<< user_name
<<"...and goodbye!/n";

return 0;
}
编译都过的,一执行就提示cannot execute program!
为什么,方便的话,请指教一下从delphi转C#的捷径吧,谢谢啦
 
这个不是C#,是C++程序吧
 
是呀,C++
C#的风格不是这样的
using system;
using object;
...
 
这个可以说是C++了,C#中的main要封装起来才行的。
 
vc6 可以运行啊
 
我就是用VC6啊,可是运行时提示cannot execute program!
 
注意,程序中要区分大小写!!
将string user_name;
改成CString user_name;试试
 
to 春意
试了还是不行,一样的错误提示
 
多人接受答案了。
 
后退
顶部