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

9.22 (3)

时间:2017-09-26 01:00:41      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:span   std   using   cout   return   namespace   com   img   ret   

#include<iostream>
using namespace std;
int main(){
    int a=7,b;
    b=a++;
    cout<<b<<endl;
    return 0;
}

技术分享

#include<iostream>
using namespace std;
int main(){
    int a=7,b;
    b=++a;
    cout<<b<<endl;
    return 0;
}

技术分享

9.22 (3)

标签:span   std   using   cout   return   namespace   com   img   ret   

原文地址:http://www.cnblogs.com/LemonSir/p/7594560.html

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