提问人:cleopatra 提问时间:11/15/2023 最后编辑:Scheff's Catcleopatra 更新时间:11/15/2023 访问量:73
使用多维数组使用 c++ 制作表 [已关闭]
Making a table with c++ using multidimensional arrays [closed]
问:
我编写了一个代码来使用 C++ 重新创建此表,但它不起作用。如何使用多维数组创建它?谢谢。
这是我写的:
#include <iostream>
using namespace std;
int main() {
int puan[5][5] = {{0,0,1,0,0},{0,0,0,1,1},{0,2,0,0,1},{2,0,2,0,0},{0,0,2,0,0}};
string oyuncular[]= {"A","B","C","D","E"};
for(int i=0;i<5;i++)
cout << "Oyuncular" << i+1 << " ";
for(int j=0;j<5;j++)
cout << puan[i][j];
return 0;
}
答: 暂无答案
评论
oyuncular
{
}
for
for
std::string
#include <string>
#include