例题2.1

1 #include<iostream>
2 using namespace std;
3 int main() {
4  int i,j;
5  i='A';
6  j='B';
7  cout<<i<<'
'<<j;
8  return 0;
9 }
原文地址:https://www.cnblogs.com/Dragonliuoumai/p/7566791.html