码迷,mamicode.com
首页 > 其他好文 > 详细

i++ 就是参与 了 然后加了 ++i 就是加了之后再参与

时间:2015-05-28 19:57:25      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:

#include <iostream.h>
main() 
{ 
    //变量声明
    char c;
    double x,y;

    //测试自增
    cout<<"++E and E++ :"<<endl;
    c=B;
    cout<<"c="<<++c<<endl;   //输出c=C
    c=B;
    cout<<"c="<<c++<<endl;   //输出c=B
    x=1.5;
    y=5+ ++x;               //加号后的空格不能少
    cout<<"y="<<y<<endl;    //输出y=7.5
    x=1.5;
    y=5+x++;
    cout<<"y="<<y<<endl;    //输出y=6.5
    cout<<"--------------------"<<endl;

    //测试自减
    cout<<"--E and E-- :"<<endl;
    c=B;
    cout<<"c="<<--c<<endl;   //输出c=A
    c=B;
    cout<<"c="<<c--<<endl;   //输出c=B
    x=1.5;
    y=5+--x;
    cout<<"y="<<y<<endl;    //输出y=5.5
    x=1.5;
    y=5+x--;
    cout<<"y="<<y<<endl;    //输出y=6.5
}

 

i++ 就是参与 了 然后加了 ++i 就是加了之后再参与

标签:

原文地址:http://www.cnblogs.com/zhuyaguang/p/4536650.html

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