65,209
社区成员
发帖
与我相关
我的任务
分享
#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