我尝试了很多组合并在网上搜索了一些有用的东西,但不幸的是我没有发现任何有用的东西。
这是为了我的家庭作业。69 个问题中唯一一个我无法回答的问题。
问题:
四个整型变量 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