1、for循環,語法「for(i=1;i
本教學操作環境:windows7系統、c99版本、Dell G3電腦。
問題描述:用C語言實作1 2 3 4 5 … n的累加。
方法一:使用for迴圈。具體程式碼如下:
#include<stdio.h> int add(int n){ int i,sum=0; for(i=1;i<p>運行結果如下:</p> <p><img src="https://img.php.cn/upload/article/000/000/024/3baeba1bd04a154dcb498bea9e9af935-0.png" alt="c語言如何實現1~n累加求和"></p> <p><strong>方法二:使用while循環。具體程式碼如下:</strong><br></p> <pre class="brush:php;toolbar:false">#include<stdio.h> int add(int n){ int i=1,sum=0; while(i<p>main()函數和for迴圈的函數一致,當然也可以依照自己的需求進行修改,具體運行結果如下:</p> <p><img src="https://img.php.cn/upload/article/000/000/024/3baeba1bd04a154dcb498bea9e9af935-1.png" alt="c語言如何實現1~n累加求和"></p> <p><strong>方法三:使用do-while循環,具體程式碼如下:</strong></p> <pre class="brush:php;toolbar:false">#include<stdio.h> int add(int n){ int i=1,sum=0; do{ sum=sum+i; i++; }while(i<p>運行結果如下:</p> <p><img src="https://img.php.cn/upload/article/000/000/024/956db51426d2e9fa74ef14c50ccc3a16-2.png" alt="c語言如何實現1~n累加求和"></p> <p>相關推薦:《<a href="http://www.php.cn/course/list/37.html" target="_blank">C語言影片教學</a>》<br></p>#</stdio.h>
以上是c語言如何實現1~n累加求和的詳細內容。更多資訊請關注PHP中文網其他相關文章!