65,186
社区成员




#include <iostream>
using namespace std;
int main(void)
{
char myByte = 0;
int myInt = 0;
cout << "hello world\n" << endl;
cout << "myByte=" << myByte << endl;
cout << "MyInt=" << myInt << endl;
return 0;
}
myByte=
myInt=0