【C++学习教程02】运算符
参考资料
- 范磊C++(5课)
- Xcode平台
代码
#include "stdafx.h"
#include <stdlib.h>
#include <iostream>
using namespace std;
int main(int argc, const char * argv[]) {
// insert code here...
int a = 1;
int b = 1;
cout << "a:" << endl;
cout << ++a << endl;//先加再取
cout << a << endl;//先加再取
cout << "b:" << endl;
cout << b++ << endl;//先取再加
cout << b << endl;//先取再加
//****三目运算****
char char_a;
cin >> char_a;
cout << (char_a=(char_a >= 'A'&& char_a <= 'Z') ? (char_a + 32):char_a)<<endl;//大写转化为小写
cout << ((char)((char_a >= 'A'&& char_a <= 'Z') ? (char_a + 32) : char_a)) << endl;
system("pause");
return 0;
}
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步