C++程序设计 (第三版) 谭浩强 习题2.3
习题2.3 写出以下程序运行结果。请先阅读程序,分析应输出的结果,然后上机验证。
#include <iostream>
using namespace std;
int main(){
char c1 = 'a', c2 = 'b', c3 = 'c', c4 = '\101', c5 = '\116';
cout<<c1<<c2<<c3<<'\n';
cout<<"\t\b"<<c4<<'\t'<<c5<<'\n';
system("pause");
return 0;
}
IDE工具:VS2010
Note: 使用不同的IDE工具可能有部分差异。