- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
清华大学acm题解(Tsinghua University ACM solutions)
清华大学acm题解(Tsinghua University ACM solutions)
Training materials for ACM training team of Tsinghua University (internal use)
I. Basic C++
Basic knowledge
All C++ programs are composed of functions, function called subroutine, and every C++ program must contain a main function, the compiler (to the source code into object code program) to translation of the object code and some boot code combination, generating executable files, main function is the entrance. The implementation of the document so that each C++ program has only one main function.
Next, lets look at a simple C++ program. (program 1.1)
Program 1.1
Int main () {return 0;}
In this program, the compiler cannot translate it into machine code if it lacks any of the characters.
In addition, C++ is case sensitive, which means that if I spell the mian () function as Main (), the compiler will make mistakes when compiling this program.
Edit source file
You can take all the steps of the development of the common management program, including the editing program, as an integrated development environment (integrated, development, evironments, IDE). In the windows system, the more widely used are Microsoft, Visual, C++, Dev-Cpp and so on. Under the UNIX system, there are Vim, Emacs, Eclipes and so on. These programs can provide a good development platform, so that we can facilitate the development of a program, then we need to know is the standard C++, all source code is written in Dev-cpp, can be compiled by.
If we modify the program in main (1.1) the name of the function, it will be changed to Main (IDE), then, will give an error message, such as [Linker error] undefined reference to `WinMain@16, because the compiler did not find the main function.
Next, lets look at a classic example of C++ (program 1.2)
Program 1.2
#includeiostream
Using namespace std;
Int main (void)
{
Cout Hello Wrold! endl;
Return 0;
}
Operation result
Hello World!
Program description
The first line, #includeiostream, is a preprocessing comman
您可能关注的文档
- 日本旅游产品(Japanese tourism products).doc
- 日常问候关心祝福短信(Daily greetings, care, blessing SMS).doc
- 日本民俗文化之-日本料理(Japanese Folk Culture Japanese cuisine).doc
- 日本漫画家的个人网站(Japanese cartoonist's personal website).doc
- 日本经济转型(Japan's economic transformation).doc
- 日本旅游法规体系的特征及其对我国旅游立法的启示_郑国全(The characteristics of Japanese tourism law system and Its Enlightenment on China's tourism legislation _ Zheng Guoquan).doc
- 日本金属发展之我见(My view on the development of metal in Japan).doc
- 日本韩国旅游注意事项(Japan, Korea Tourism notes).doc
- 日江空调故障代码分析(Fault code analysis of air conditioning system in Japan River).doc
- 日江空调故障瓦代码(Tile code for malfunction of air conditioning system).doc
- 清华大学法学院考研参考书目(Tsinghua University law school entrance examination bibliography).doc
- 清华接待日(Tsinghua reception day).doc
- 清华在线名师谈2011年gct逻辑考试临场攻略(Tsinghua online teacher on 2011 GCT logic exam Raiders).doc
- 清洁工捡到2万元因归还不及时被开除_网易新闻中心(The cleaners picked up 20 thousand yuan for timely return and was expelled from _ NetEase News Center).doc
- 清洗ccd(Cleaning CCD).doc
- 清理iphone4垃圾(清理iPhone4垃圾).doc
- 清诗(丁)(Qing Poetry (Ding)).doc
- 清道夫繁殖和养殖技术(Scavenger breeding and breeding techniques).doc
- 温州人心态宁愿睡地板,也要做老板(Wenzhou mentality would rather sleep on the floor, also want to be a boss).doc
- 温热论-清-叶桂(Warm theory Qing Ye Gui).doc
最近下载
- 七年级下学期体育与健康教案全集(54课时).doc VIP
- 2025年绿色矿山建设技术挑战与机遇报告.docx
- 住房公积金贷款全权代理委托书范本.docx VIP
- 2024-2025学年人美版(2024)美术小学一年级上册教学设计(附教材目录).docx VIP
- 【北师大版】二年级《劳动实践指导手册》第1课《清洗我的小水杯》课件.pptx VIP
- 高中通用技术作品实验报告.doc VIP
- 急性有机磷农药中毒诊治.ppt VIP
- JB_T 7334-2016 手拉葫芦.pdf VIP
- 燃气管道施工方案.doc VIP
- DB15T 3962.3-2025绿色矿山建设规范 第3部分:黄金行业.pdf VIP
文档评论(0)