私はC++の新機能ですが、数日しかプログラミングしていないので、これはばかげているかもしれませんが、なぜ配列が正しく動作していないのかを知ることができますか?これは私が数独パズルを解決するよう設計しているプログラムの始まりですが、私が解決するために使用している2D配列は正しく動作していません。またこの文字配列コードで何が問題になっていますか?
#include <iostream>
#include <string>
using namespace std;
int main() {
char dash[9][9];
for (int array=0; array<9; array++) {
for (int array2=0; array2<9; array2++) {
dash[array][array2]=array2;
cout << dash[array][array2];
}
}
cout << dash[1][4] << endl; //This is temporary, but for some reason nothing outputs when I do this command.
cout << "╔═══════════╦═══════════╦═══════════╗" << endl;
for (int count=0; count<3; count++) {
for (int count2=0; count2<3; count2++) {
cout << "║_" << dash[count][count2*3] << "_|_" << dash[count] [count2*3+1] << "_|_" << dash[count][count2*3+2] << "_";
}
cout << "║" << endl;
}
cout << "╠═══════════╬═══════════╬═══════════╣" << endl;
for (int count=0; count<3; count++) {
for (int count2=0; count2<3; count2++) {
cout << "║_" << dash[count][count2*3] << "_|_" << dash[count] [count2*3+1] << "_|_" << dash[count][count2*3+2] << "_";
}
cout << "║" << endl;
}
cout << "╠═══════════╬═══════════╬═══════════╣" << endl;
for (int count=0; count<3; count++) {
for (int count2=0; count2<3; count2++) {
cout << "║_" << dash[count][count2*3] << "_|_" << dash[count][count2*3+1] << "_|_" << dash[count][count2*3+2] << "_";
}
cout << "║" << endl;
}
cout << "╚═══════════╩═══════════╩═══════════╝" << endl;
return 0;
}
、まあ、私は数独ボードを構築するための簡単な方法があるかもしれないことを認識してんだけど、私はすでにこの1つは動作しますか、私の心の中で見ることができ、それが失敗した場合学ぶ唯一の方法は失敗によるものです。私が知りたいのは、配列が間違っていることだけです。
正確にはどうなりますか? –
@Ben文字はまったく出力されません。私はあなたが見ることができるように余分なCOUTを加えました。私はランダムな配列値を出力するように言ったが、それはそれをしなかった。 –
コードがうまくコンパイルされているようです... http://codepad.org/tKPRn9rZ何が問題なのですか? –