为什么我的Dev C++的运行结果是繁体字?😭
#include<iostream>
using namespace std;
int main()
{
int l,w,c,s;
cin>>l>>w;
c=2*(l+w);
s=l*w;
cout<<"周长="<<c<<endl;
cout<<"面积="<<s<<endl;
return 0;
}
1 3
鍛ㄩ暱=8
闈㈢Н=3
Process exited after 4.205 seconds with return value 0
请按任意键继续. . .
不应该是这样么?
1 3
周长=8
面积=3
Process exited after 4.205 seconds with return value 0
请按任意键继续. . .