我正在编程一段时间,但为此我找不到答案。
假设我想在更改变量名称时循环运行。
可以说我有:
int ran1;
int ran2;
int ran3;
现在我想运行一个为它们输入数字的 for 循环:
for(int k=0;k<3;k++)
ran%k=k; // this is wrong ,but i am looking for the correct way .
//output should be :ran1=0 ran2=1 ran3=2..
我知道其他需要更多代码行的方法。