#include <iostream>
using namespace std;
int main(){
cout<<"张浩宇真帅";
return 0;
}
为什么图标为红色的C++编译器不可以输出中文,而蓝色的C++编译器却可以输出中文?
#include <iostream>
using namespace std;
int main(){
cout<<"张浩宇真帅";
return 0;
}
为什么图标为红色的C++编译器不可以输出中文,而蓝色的C++编译器却可以输出中文?
#include<iostream>
using namespace std;
int main(void)
{
for (int i = 1; i < 10; i++)
{
for (int j = 1; j <= i; j++)
{
cout << i <<"*"<< j<<"="<< i* j<<" ";
}
cout << endl;
}
system("pause");
return 0;
}