C++学习
tanyanzimo
这个作者很懒,什么都没留下…
展开
-
cin、cin.get()、cin.getline()、getline()、gets()等函数的用法
1、cin>> 用法1:最基本,也是最常用的用法,输入一个数字: #include usingnamespace std; main () { int a,b;cin>>a>>b; cout<<a+b<<endl; } 输入:2[回车]3[回车] 输出:5 用法2:接受一个字符串,遇“空格”、“TAB”、“回车”都结束转载 2015-05-26 18:19:31 · 274 阅读 · 0 评论 -
C++基本语法
1.键盘输入和输出 cin>>n;//在键盘中输入一个数给n,相当于C中scanf("%d",&n); cin>>n>>m;//在键盘中输入两个数,第一个给n,第二个给m,相当于C中scanf("%d%d",&n,&m); cout<<n<<m;//输出n和m cin在读取输入时忽视空格,若想打印出空格,可 cout原创 2015-05-26 17:55:45 · 433 阅读 · 0 评论 -
C++中endl
cout cout 那么意思是: endl就相当于输出的时候回车。 第一句的输出是: the id is 2 第二句的输出是: the id is i 然后光标到了第二行。原创 2015-08-24 16:48:34 · 602 阅读 · 0 评论 -
C++中结构体
简介:http://blog.csdn.net/whuslei/article/details/5665289 详解:http://blog.csdn.net/rns521/article/details/6977091转载 2015-08-24 19:45:25 · 208 阅读 · 0 评论 -
机试指南笔记
一、Chapter 8,其他技巧(map和滚动数组未看) 1.灵活运用string(#include“string”)。 2.尽量避免使用gets()。多用scanf。 二、Chapter 2,经典入门 1.sort函数。sort(buf,buf+n)两个参数为起始地址和结束地址。数组按快速排序升序排好。sort(buf,buf+n,cmp)利用自己定义的比较函数cmp对数组进行排序,ru原创 2015-08-24 20:37:01 · 276 阅读 · 0 评论