#include <iostream>
using namespace std;
void main(void)
{
char c1,c2,c3,c4;
char n1,n2;
c1='a';
c2=97;
c3='x61';
c4=0141;
cout<<"c1="<<c1<<'\t'<<"c2="<<c2<<endl;
cout<<"c3="<<c3<<'\t'<<"c4="<<c4<<endl;
n1='\n';
n2='\t';
cout<<"使用转义字符\n";
cout<<"c1="<<c1<<n2<<"c2="<<c2<<n1;
cout<<"c3="<<c3<<n2<<"c4="<<c4<<n1;
//JSRUN引擎2.0,支持多达30种语言在线运行,全仿真在线交互输入输出。
}