uni-app元件之mescroll-uni的簡單使用
阿新 • • 發佈:2021-02-01
## **二維陣列輸出表格,以及轉義字元使用**
將學生成績資訊製成表格:
程式碼:
#include
#include
using namespace std;
int main()
{
int chengji[3][3] =
{
{100,100,100},
{30,20,50},
{60,30,90}
};
string xingming[3] = { “張三”,“李四”,“王五” };
cout << “姓名\t數學\t英語\t語文\t總成績\n”;
for (int i = 0; i < 3; i++)
{
cout << xingming[i];
for (int j = 0; j < 3; j++)
{
cout << “\t”;
cout <<chengji[i][j];
sum += chengji[i][j];
}
cout << “\t”;
cout << sum;
//對轉義字元\n的使用必須在"“內才行,
//cout<<“hello world\n"可以,但cout<<sum”\n”;不可以,
//其他轉義字元使用類似
cout<< “\n”;
//cout << endl;
}
system(“pause”);
}
執行結果: