3 つの変数があります。1 つは A = 2012、2 番目は B = 2020、3 番目は C = B - A です。C は年の差です。2012年 2013年 2014年 2015年 2016年 2017年 2018年 2019年 2020年の2つの日付の間の年を画面に表示したいと思います。さまざまな解決策を試しましたが、できません。正しいアプローチはサイクルだと思います。そうですか?これを行う方法を教えていただけますか?ありがとうございました。
質問する
82 次
2 に答える
1
サイクル付きのループを意味していると思いますか?これを試すことができます:
int a = 2012; // Holds the first year
int b = 2020; // Holds the last year
int c = b - a; // Holds the difference of the a and b
while(a<=b) { // Execute this as long as a is equal or less then b
NSLog("Year: %d", a); // Print the year to the console
a++; // Increment the value of a with 1
}
于 2012-04-18T19:36:29.487 に答える
-2
for(int i=0;i<=c;i++)
{
NSLog(@"The Year is %i \n",a+i);
}
于 2012-04-18T19:22:27.590 に答える