標題:
C++第七題:計算 1 + 2 + ... + n = ﹖。
[打印本頁]
作者:
stephen
時間:
2010-2-27 11:22
標題:
C++第七題:計算 1 + 2 + ... + n = ﹖。
C++第七題:計算 1 + 2 + ... + n = ﹖。
作者:
yachen392
時間:
2010-2-27 11:22
/**7.計算1+2+3+.....+n=?**/
#include<iostream>
using namespace std;
int main(){
int n , total ;
total=0;
cout << "Please enter numberN: " << endl;
while(cin >> n){
for(int i=1;i<=n;i++)
{
total=total+i;
}
cout << total << endl;
}
system("Pause");
return 0;
}
複製代碼
作者:
chuangjoy
時間:
2010-2-27 11:22
本帖最後由 chuangjoy 於 2010-2-27 11:23 編輯
/*7.計算1+2+3+.....+n=?*/
#include <iostream>
#include <cstdlib>
using namespace std;
int main(void){
int num = 0;
int n;
cout << "請輸入數字" << endl;
cin >> n;
for (int i=1; i<n; i++){
num = num + i;
cout << num << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
p17johnny
時間:
2010-2-27 11:23
標題:
晴空嵐月:第6題DEV C++ 這個不是活的~~~不太會寫
本帖最後由 p17johnny 於 2010-2-27 11:28 編輯
#include <iostream>
#include <cstdlib>
using namespace std;
int main(void){
int num = 0;
int n=5;
for (int i=1; i<n; i++){
num = num + i;
cout << num << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
b1081081
時間:
2010-2-27 11:38
#include <iostream>
#include <cstdlib>
using namespace std;
int main(void){
int n;
int num = 0;
cout << "請輸入一個數字:" << endl;
cin >> n;
for(int i = 1; i <= n; i++){
num = num + i;
}
cout << "1 + 2 + 3 + ...... + n = " << num << endl;
system("pause");
return 0;
}
複製代碼
作者:
tony
時間:
2010-4-23 20:01
#include <iostream>
#include <cstdlib>
#include <cmath>
using namespace std;
int main(void){
int n;
cin >> n ;
int x = (n+1) * (n-1+1);
int xx = x / 2;
cout << xx << endl;
system("pause");
return 0 ;
}
複製代碼
作者:
abc3806198
時間:
2010-4-23 20:01
回復
1#
stephen
#include <iostream>
#include <cstdlib>
#include <cmath>
using namespace std;
int main(void){
int n;
cin >> n;
int x = (1+n)*(n-1+1);
int y = x/2;
cout << y << endl;
system("pause");
return 0;
}
複製代碼
作者:
tony
時間:
2010-4-23 20:17
#include <iostream>
#include <cstdlib>
#include <cmath>
using namespace std;
int main(void){
for(int x = 65 ;x < 91 ; x++){
cout << (char)x << endl;
}
for(int y =97; y < 123; y++){
cout << (char)y << endl;
}
system("pause");
return 0 ;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2