/* Write a program that asks the user
* to enter the starting point and end
* point of the counting range and the
* increment value and displays the total
* of the numbers within that range
*/
int start;
int end;
int increment;
int sum = 0;
int count= 0;
Console.WriteLine(" Enter the start number ");
start = Int32.Parse(Console.ReadLine());
Console.WriteLine(" Enter the end number ");
end = Int32.Parse(Console.ReadLine());
Console.WriteLine(" Enter the increment number ");
increment = Int32.Parse(Console.ReadLine());
for (start = ; end <= start ; count = count + increment )
{
Console.WriteLine(" Number is: " + count);
}
Console.WriteLine(" Sum is: " + sum);
Console.ReadKey();
答えて
私はあなたのコードを修正ビット
/* Write a program that asks the user
* to enter the starting point and end
* point of the counting range and the
* increment value and displays the total
* of the numbers within that range
*/
int start;
int end;
int increment;
int sum = 0;
int count= 0;
Console.WriteLine(" Enter the start number ");
start = Int32.Parse(Console.ReadLine());
Console.WriteLine(" Enter the end number ");
end = Int32.Parse(Console.ReadLine());
Console.WriteLine(" Enter the increment number ");
increment = Int32.Parse(Console.ReadLine());
for (count = start; //init value for count
count <= end ; //check every loop. if count still satify condition, then do thing inside tho loop
count += increment //change count every a loop done
)
{
sum += count;
Console.WriteLine(" Number is: " + count);
}
Console.WriteLine(" Sum is: " + sum);
Console.ReadKey();
これは動作しているようです!ありがとうございました ! また、for文について説明できますか? 1.初期化カウント=開始? 2.ガード...カウントが終了未満ですか? 3.処理を進める... count = count + increment –
私は上記のコードを説明しようとしていますが、詳しくはhttps://www.dotnetperls.com/forを参照することをお勧めします。 – zquanghoangz
あなたがstart
< end
whileループをしたい、その条件が満たされるたびに、カウンタがincrement
によってインクリメントされます。
これはあなたのループの構造を次のようになります。
for (int i = start; i < end; i += increment)
{
// Add to total and display current value
}
終了番号は増分番号番号は、入力してください開始番号を入力します:0 合計することである:0 これは、コンソールウィンドウが私に戻って促しているものです? –
ループの前に 'count'を宣言しないでください。ループは 'for(int count = start; count
- 1. jQuery - 誰でも私を助けることができます...?
- 2. 誰かが簡単なperlスクリプトで私を助けることができます
- 3. 誰かが私を助けることができますか?
- 4. 誰も私の下でコードを助けることができますか?
- 5. 誰かがこのマップで私を助けることができますか?
- 6. 誰かがこのエラーで私を助けることができますか?
- 7. 誰でもこのhasNextLine()エラーを助けることができますか?
- 8. 誰でもこのMagentoエラーを助けることができますか?
- 9. 誰でも私のプログラム(GAUSS SEIDEL METHOD)のループを助けることができますか?
- 10. 私はこの簡単なコンバータプログラムで助けが必要です
- 11. PDO + SQL誰かがこのPDOで私を助けることができる
- 12. 誰でもこの仕事を手助けできますか?
- 13. 誰でも私はこのstrchr()Cセグメンテーションフォールトを理解するのを助けることができますか?
- 14. 誰かが私のヘビの動きを助けることができます
- 15. 誰かがpreg_matchで私を助けることができますか?
- 16. 誰かがTensorFlowで私を助けることができますか?
- 17. 誰かがpythonネットワークpragramで私を助けることができますか?
- 18. 誰かが次のJAVAコードで私を助けることができます
- 19. 誰かがワトソンのダイアログで私を助けることができます
- 20. このwhileループで私を助けることができますか?
- 21. 誰かが私のここでのエラーを指摘するのを助けることができますか?
- 22. 誰が私を助けることができるLINQ
- 23. 誰かがmakeMoveメソッドで私を助けることができます
- 24. 誰かがチックタックトーロジックで私を助けることができます
- 25. は誰も私を助けることができるのSharePoint画像ライブラリ
- 26. vb.net TWAINプロジェクトは、誰も私を助けることができるのPictureBox
- 27. XAMPPとは?誰も私のMySQLのエラーで私を助けることができますか?
- 28. 誰かがエルグの疑問に私を助けることができます
- 29. ネット:これは簡単Qですが、大きな助けスレッド
- 30. 誰でも次のJavascriptコードで私を助けることができますか?私は、出力に
あなたのforループ – yashpandey
間違っているここには質問、ちょうど宿題はありませんし、いくつかのコード。実際に何が期待されているのか、実際の結果、エラーメッセージなどはどういうものなのかを明確にしてください。 –
私はループで数日間のテストを準備しています。これはサンプルの質問です これは私が戻ってくるものです。 開始番号を入力します。1終了番号を入力します。10増分番号を入力します。2番号:0合計:0これはコンソールウィンドウが私に戻ってくるのを促すものですか? –