私は多くの組み合わせを試し、Web で役立つものを検索しましたが、残念ながら有用なものは何も見つかりませんでした。
これは私の宿題です。69問中1問だけ答えられません。
質問:
4 つの整数変数 pos1、pos2、pos3、pos4 が宣言され、初期化されています。それらの値を「左ローテーション」するために必要なコードを記述します。各変数が連続する変数の値を取得し、pos4 が pos1 の値を取得します。
私が試した例:
int tempP1 = pos1;
int tempP2 = pos2;
int tempP3 = pos3;
int tempP4 = pos4;
pos4 = tempP1;
pos3 = tempP2;
pos2 = tempP3;
pos1 = tempP4;
それは私に何を示しています:
Remarks:
⇒ Your code had an error during execution
More Hints:
⇒ Are you sure you want to use: tempP1
⇒ Are you sure you want to use: tempP2
⇒ Are you sure you want to use: tempP3
Problems Detected:
⇒ pos1 has wrong value
⇒ pos3 has wrong value