程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> 初始化-C++ char數組不能賦值中文

初始化-C++ char數組不能賦值中文

編輯:編程綜合問答
C++ char數組不能賦值中文

#include
using namespace std;
class student
{
public:
char *getname()
{
cout << "姓名:";
cin >> name[10]; //為什麼輸入字母、數字都可以正常運行,輸入中文就不行
count++;
return name;
}
void seteng()
{
cout << "英語:";
cin >> english;
engtotal += english;
}
void setchi()
{
cout << "語文:";
cin >> chinese;
chitotal += chinese;
}
void setmath()
{
cout << "數學:";
cin >> math;
mattotal += math;
}
static float getaverage(float x){ return x / count;}
static void show()
{
cout << "英語總分:" << engtotal << " 平均分:" << getaverage(engtotal)< cout cout }
protected:
char name[10];
static int count;
int chinese;
int math;
int english;
static int engtotal;
static int chitotal;
static int mattotal;
};
int student::count = 0; //類的成員可以這樣初始化嗎?
int student::engtotal = 0;
int student::chitotal = 0;
int student::mattotal = 0;
class rg :public student
{
public:
void setjava()
{
cout cin >> java;
rgcount++;
javatotal += java;
}
void setweb()
{
cout << "web:";
cin >> web;
webtotal += web;
}
static void show()
{
cout << "java總分:" < cout }
protected:
static int rgcount;
int java;
int web;
static int javatotal;
static int webtotal;
};
int rg::rgcount = 0;
int rg::javatotal = 0;
int rg::webtotal = 0;
class xa :public student
{
public:
void setwangluo()
{
cout cin >> wangluo;
xacount++;
wangluototal += wangluo;
}
void setanquan()
{
cout << "安全:";
cin >> anquan;
anquantotal += anquan;
}
static void show()
{
cout << "網絡總分:" << wangluototal << "平均分:" << (float)wangluototal /xacount << endl;
cout << "安全總分" << anquantotal << "平均分:" << (float)anquantotal /xacount << endl;
}
protected:
static int xacount;
int wangluo;
int anquan;
static int wangluototal;
static int anquantotal;
};
int xa::xacount = 0;
int xa::wangluototal = 0;
int xa::anquantotal = 0;
int main()
{
int rgnum, xanum;
rg rgst[300];
xa xast[300];
cout<< "輸入軟件工程專業學生人數( cin >> rgnum;
for (int i = 0; i < rgnum; i++)
{
rgst[i].getname();
rgst[i].seteng();
rgst[i].setchi();
rgst[i].setmath();
rgst[i].setjava();
rgst[i].setweb();
}
cout< cin >> xanum;
for (int n = 0; n < xanum; n++)
{
xast[n].getname();
xast[n].seteng();
xast[n].setchi();
xast[n].setmath();
xast[n].setwangluo();
xast[n].setanquan();
}
student::show();
rg::show();
xa::show();
cout << endl;
return 0;
}

最佳回答:


name是字符數組,而name[10]是這個數組中第10個元素,即char類型變量,占一個字節,而漢字編碼都至少需要兩個字節,因此存不下。C++中有一個
wchar_t 類型,即所謂的寬字符,每個字符占兩個字節,專門用於非ASII編碼的字符表示。其實只要不訪問單個字,char類型也可以,只是兩個char類型的
字符表示一個漢字,對於整個字符串的表示來說沒有影響,也就是說你需要把那個下標10去掉

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved