如何在代码块控制台中打印西里尔文字

时间:2018-12-29 17:57:23

标签: c++ console codeblocks cyrillic

我在Windows 7 Ultimate上使用代码块17.12,C ++ 98版本,并且需要在控制台中打印西里尔文字。

你能帮我吗:)

#include<iostream>
#include <locale>    
using namespace std;
int main(){
long long r[5],turseno,brNamereni=0,ir,ic;
cout<<"Напиши 5 числа.После въдеди още едно"<<"\n"<<"Програмата ще ти 
изведе колко пъти"<<"\n"<<"се среща написанато число по-горе";
//This is bulgarian language.
for(ic=0;ic<5;ic++){
cin>>r[ic];
}

cin>>turseno;
for(ir=0;ir<5;ir++){
if(turseno==r[ir]){
brNamereni++;
}
}
cout<<brNamereni;
return 0;
}

2 个答案:

答案 0 :(得分:0)

#include<iostream>
using namespace std;
main()
{
int a[2]={1,2};
int b,d;
for(int i=0;i<2;++i)
{
cin>>b; 
    }
int c;
cin>>c;
for(int j=0;j<2;++j)
{`enter code here`
if(a[j]==c)
d++;    
        }
cout<<"enter number u wanna check";     
cout<<d;                
}

答案 1 :(得分:0)

通过将m2放在setlocale(LC_ALL, "Bulgarian");的开头,将程序的语言环境信息更改为保加利亚语。语言环境设置确定如何处理特定于语言的输入/输出操作。