码迷,mamicode.com
首页 > 编程语言 > 详细

第一个c++程序

时间:2014-07-09 00:37:35      阅读:270      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   width   os   2014   

 

#include <iostream>

using namespace std;

int main(int argc, const char * argv[])

{

//cin接收键盘输入

    int age;

    double height;

    char name[10];

//    cout 在控制台输出一些信息

//    相当于c语言的printf函数

//    相当于oc 中的NSLog

    cout << "请输入年龄";

    cin >> age;

//    std::cout

//    cout这个对象是定义在std 命名空间中的

    cout << "请输入身高";

    cin >> height;

    

    cout << "请输入姓名\n";

//    cin >> name;

    cin.get(name,10);

//    endl  : end line

//    运算符重裁

    cout << "my age is " << age << ",height is " << height << ",name is " << name << endl ;

    return 0;

}

 bubuko.com,布布扣

bubuko.com,布布扣

第一个c++程序,布布扣,bubuko.com

第一个c++程序

标签:style   blog   http   width   os   2014   

原文地址:http://www.cnblogs.com/yirenduishou/p/3830151.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!