vc++6.0中如何在“hello world”写程序.步骤如何?

2025-02-24 11:40:36
推荐回答(1个)
回答1:

写入一下代码:#includeusing namespace std;int main(){cout<<"hello world!";return 0;}然后,CTRL+F7,编译;F7,链接;CTRL+F5,运行。 也可以不用快捷键直接点工具栏上的按钮。