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

win编程实践(1)【c++】

时间:2015-11-11 16:35:55      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

变量的赋值可采用函数表示法,也可使用等号赋值。

 

// ConsoleApplication1.cpp : 定义控制台应用程序的入口点。

//

 

#include "stdafx.h"

#include <iostream>

 

using std::cout;

using std::endl;

 

int main()

{

       cout<< "您好,世界!" << endl;

       intx = 5;

       inty(10);

       intz = x*y;

       cout<< z << endl;

       return0;

}

 

 

运行结果 :

>ConsoleApplication1.exe

您好,世界!

50

 

本博客所有内容是原创,如果转载请注明来源

http://blog.csdn.net/myhaspl/


通过typedef关键字可以自定义类型


 

//ConsoleApplication1.cpp : 定义控制台应用程序的入口点。

//

 

#include "stdafx.h"

#include <iostream>

 

using std::cout;

using std::endl;

using std::cin;

 

int main()

{

    typedef unsigned long long bigint;//定义自己的类型

    cout << "您好,世界!" << endl;

    int x = 5000;

    char temp;

    bigint z = x*x;

    cout << z << endl;

    cin >> temp;//等待以便显示结果

    return 0;

}

 

运行结果 :

您好,世界!

25000000

版权声明:本文为博主原创文章,未经博主允许不得转载。

win编程实践(1)【c++】

标签:

原文地址:http://blog.csdn.net/myhaspl/article/details/49783175

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