副标题副标题副标题副
#include <iostream>using namespace std;int main(){ int temp1 = 65, temp2 = 66; cout << (char)temp1 << " " << (char)temp2 << endl; cout << temp1 << " " << temp2 << endl; return 0;}