“你好,世界!”教程可用(Windows,mingw / msvc) [英] "Hello, world!" tutorial available (Windows, mingw/msvc)

查看:58
本文介绍了“你好,世界!”教程可用(Windows,mingw / msvc)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

仅仅是因为似乎缺乏标准后的_correct_

教程:< url:http://home.no.net/dubjai/win32cpptut/>。


免责声明:今晚写的所以也许有错误。在

演示文稿中 - 有吗?


请求:如果有人花时间将word文档转换成清洁

xhtml可能具有时尚清晰的可读布局,那么我将继续写下一部分,以及下一部分......


-

答:因为它弄乱了人们通常阅读文字的顺序。

问:为什么这么糟糕?

A:热门发布。

问:usenet和电子邮件中最烦人的事情是什么?

Just because there seems to be a lack of post-standard _correct_
tutorials: <url: http://home.no.net/dubjai/win32cpptut/>.

Disclaimer: written this evening so perhaps there are "bugs" in the
presentation -- are there?

Plea: if someone takes the time to convert the word document to clean
xhtml perhaps with stylish clear readable layout, then it will be an
incentive for me to go on to write a next part, and a next part...

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?

推荐答案

这是一个好主意Alf。


顺便说一下:


"随着你变得更有经验,你会欣赏IDE的舒适度

(集成开发环境),如Visual Studio,或(​​免费)
DevC ++或(免费)Eclipse,因为那时你已经足够了解它做你的

竞价,但是现在我建议你只使用命令行工具<你知道发生了什么吗?
引擎盖下?并完全控制。


正是我的想法(我可以说,因为我做了同样的错误并且用一个完全成熟的IDE开始了

关闭( VC ++ 6),使用它已经3年了,并且在第一次使用命令行g ++时完全无能为力。


一个美化的东西:确切的MinGW32背后的名称是Minimalist GNU for

Win32。但也许我只是在这里挑剔:)


问候,

马蒂亚斯


Alf P. Steinbach写道:
That''s a good idea Alf.

By the way:

"As you become more experienced you will appreciate the comforts of an IDE
(Integrated Development Environment) such as Visual Studio, or (free)
DevC++ or (free) Eclipse, because then you know enough to make it do your
bidding, but for now I recommend you stay with command line tools only so
that you learn what goes on ?under the hood? and have full control."

Exactly my thoughts (I can tell, because I did the same mistake and started
off with a fully fledged IDE (VC++6), used it for like 3 years and was
totally clueless when first using command line g++).

One cosmetic thing: The exact name behind MinGW32 is "Minimalist GNU for
Win32". But maybe I''m just nitpicking here :)

Regards,
Matthias

Alf P. Steinbach wrote:
只是因为似乎缺乏标准的_correct_
教程:< url:http://home.no.net/dubjai/win32cpptut />。

免责声明:今天晚上写的所以也许有错误。在
演示文稿中 - 有吗?

请求:如果有人花时间将word文档转换为清洁
xhtml或许具有时尚清晰的可读布局,那么它将是鼓励我继续写下一部分和下一部分...
Just because there seems to be a lack of post-standard _correct_
tutorials: <url: http://home.no.net/dubjai/win32cpptut/>.

Disclaimer: written this evening so perhaps there are "bugs" in the
presentation -- are there?

Plea: if someone takes the time to convert the word document to clean
xhtml perhaps with stylish clear readable layout, then it will be an
incentive for me to go on to write a next part, and a next part...






为什么要限制Windows教程?

我建议为每个程序提供:

+解释程序本身

+ Windows下的编译

+ Unix下的编译


当然应该有一个部分来处理编译器和开发环境的

安装。


如果你不坚持XHTML,我会把你的文件转换成HTML

(后来升级到XHTLM,我是不熟悉:-)


问候,

Stephan Br?nnimann
br **** @ osb-systems.com
http://www.osb-systems.com

开源

通信网络的评级和计费引擎。

Why restrict the tutorial to Windows?
I''d suggest to provide for each program:
+ the explaine program itself
+ compilation under Windows
+ compilation under Unix

Of course then there should be a section that deals with the
installation of the complier and the development environment.

If you don''t insist on XHTML I''ll convert your document to HTML
(and later upgrade to XHTLM which I''m not familiar with :-)

Regards,
Stephan Br?nnimann
br****@osb-systems.com
http://www.osb-systems.com
Open source rating and billing engine for
communication networks.


Alf P. Steinbach写道:
Alf P. Steinbach wrote:
仅仅是因为似乎缺乏标准的_correct_
教程:< url:http://home.no.net/dubjai/win32cpptut/>。
免责声明:今天晚上写的也许有错误。在
演示文稿中 - 有吗?

请求:如果有人花时间将word文档转换为清洁
xhtml或许具有时尚清晰的可读布局,那么它将是鼓励我继续写下一部分和下一部分...
Just because there seems to be a lack of post-standard _correct_
tutorials: <url: http://home.no.net/dubjai/win32cpptut/>.

Disclaimer: written this evening so perhaps there are "bugs" in the
presentation -- are there?

Plea: if someone takes the time to convert the word document to clean
xhtml perhaps with stylish clear readable layout, then it will be an
incentive for me to go on to write a next part, and a next part...




#include< iostream> // std :: cout

#include< ostream> // std :: endl


int main()

{

std :: cout<< 你好,世界! << std :: endl;

}


< iostream>包含cout和endl,所以从那里删除ostream。


-

Ioannis Vranos

http://www23.brinkster.com/noicys


这篇关于“你好,世界!”教程可用(Windows,mingw / msvc)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆