标签:str c++ include img blog mes ret alt using
#include <iostream>
using namespace std;
int main(){
int a=3,b;
b=a++;
cout<<"a="<<a<<", b="<<b;
return 0;
}
#include <iostream>
using namespace std;
int main(){
int a=3,b;
b=++a;
cout<<"a="<<a<<", b="<<b;
return 0;
}
标签:str c++ include img blog mes ret alt using
原文地址:http://www.cnblogs.com/928990166li/p/7593615.html