自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

原创 reverse string

#include "stdafx.h"#include#includeusing namespace std;int _tmain(int argc, _TCHAR* argv[]){coutstring ch;cin>>ch;for(int i=ch.size()-1;i>=0;i--){cout}coutreturn 0;}

2011-01-02 22:51:00 282

原创 struct

#include "stdafx.h"#include#includeusing namespace std;struct CandyBar{char brand[40];double weight;int calories;};int _tmain(int argc, _TCHAR* argv[]){CandyBar snack={"mocha munch",2.3,350};coutcoutcoutint a;cin>>a;return 0;}

2011-01-02 14:01:00 207

原创 strncpy()

#include "stdafx.h"#include#includeusing namespace std;const int SIZE = 20;int _tmain(int argc, _TCHAR* argv[]){char firstName[SIZE];char lastName[SIZE];char fullName[2*SIZE+1];coutcin>>firstName;coutcin>>lastName;strncpy(fullName,lastName,SIZE);strcat(ful

2011-01-01 22:29:00 294

原创 getline()

#include "stdafx.h"#include#includeusing namespace std;int _tmain(int argc, _TCHAR* argv[]){ string name; string dessert; cout getline(cin,name); cout getline(cin,dessert); cout cout return 0;}

2011-01-01 19:14:00 274

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除