Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
0 と end を同時に動作させる単純な for ループを実装しようとしていますが、私が遭遇している問題は、偶数のアイテムでしか動作しないということです。奇数番号のアイテムの場合、最後のアイテムは返されません。
int x = 10; for(int i=0; i!= x; i++) { Console.WriteLine(i + " " +x + " "); x--; }