標題:
【隨堂測驗】計算連續數字的總和
[打印本頁]
作者:
陳育霖
時間:
2023-6-20 02:51
標題:
【隨堂測驗】計算連續數字的總和
本帖隱藏的內容需要回復才可以瀏覽
作者:
李東諺
時間:
2023-6-20 19:25
本帖最後由 李東諺 於 2023-6-20 20:18 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x,y,sum=0;
cout<<"請輸入第一個數: ";
cin>>x;
cout<<"請輸入第二個數: ";
cin>>y;
if(x<y)
{
for(int i=x; i<=y; i++)
sum+=i;
}else
{
for(int i=y; i<=x; i++)
sum+=i;
}
cout<<"從"<<x<<"到"<<y<<"所有整數的總合為: "<<sum<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
cin>>i;
cout<<"請輸入一個整數 "<<endl;
cin>>j;
cout<<"請輸入一個整數 "<<endl;
int a=0;
for(float i=0; i<=i+j; 1++)
{
for(float j=0; j<=i+j; j++)
{
cout<<"從 到 之間的數總和為: "<<j+i<<endl;
}
}
goto re;
cout<<""<<a<<endl;
system("pause");
return 0;
}
複製代碼
回復
1#
陳育霖
作者:
黃郁甯
時間:
2023-6-20 19:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{ int a=2 ;b=76;
cout<<"請輸入第一個數: ";
cin>>a;
cout<<"請輸入第二個數: ";
cin>>b;
int sum=i+0 ;
for(int i=2;i<=76;i=i+1)
cout<<"從2到76所有整數總和為: "<<cout<<"sum"<<endl;
int a=68 ;b=23;
cout<<"請輸入第一個數: ";
cin>>a;
cout<<"請輸入第二個數: ";
cin>>b;
int sum=i+0 ;
for(int i=68;i>=23;i=i-1)
cout<<"從23到68所有整數總和為: "<<cout<<"sum"<<endl;
system("pause")
return 0;
}
複製代碼
作者:
陳姿瑜
時間:
2023-6-20 19:27
本帖最後由 陳姿瑜 於 2023-6-20 20:17 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a=0,b=0,sum=0;
cout<<"請輸入第一個數: ";
cin>>a;
cout<<"請輸入第二個數: ";
cin>>b;
if(a>b)
{
for(int i=b;i<=a;i++)
{
sum+=i;
}
cout<<"從"<<a<<"到"<<b<<"所有整數的總合為: "<<sum<<endl<<endl;
}
else
{
for(int j=a;j<=b;j++)
{
sum+=j;
}
cout<<"從"<<b<<"到"<<a<<"所有整數的總合為: "<<sum<<endl<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
李晨希
時間:
2023-6-20 19:27
本帖最後由 李晨希 於 2023-6-20 20:21 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a,b,sum=0;
cout<<"請輸入第一個數: ";
cin>>a;
cout<<"請輸入第二個數: ";
cin>>b;
for(int i=a;i<=b;i++)
{
sum+=i;
for(int i=b; i<=a; i++)
{
sum+=i;
}
}
cout<<"從"<<a<<"到"<<b<<"所有整數的總合為:"<<sum<<endl;
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
王閎民
時間:
2023-6-20 19:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int i,j;
cout<<"請輸入第一個數: ";
cin >>i;
cout<<"請輸入第二個數: ";
cin >>j;
if(i>j)
{
for(int a;a=i-j;a++)
{
a=a+1;
}
cout<<"從"<<i<<"到"<<j<<"所有整數的總和為: "<<a<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
陳沁寧
時間:
2023-6-20 19:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int one = 0, two = 0 , a = 0;
re:
cout << "請輸入第一個數 : ";
cin >> one;
cout << "請輸入第二個數 : ";
cin >> two;
for (int i = one, i <= two , i++){
a = one + 1;
}
cout << "從" << one << "到" << two << "所有整數的總和為 : " << a << endl;
cout << endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
林家鉌
時間:
2023-6-20 19:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a=0,b=0,c=0;
cout<<"input the first number: ";
cin>>a;
cout<<"input the second number: ";
cin>>b;
if(a<=b){
for(;a<=b;a++)
{
c=c+a;
}
}
else if(b<=a){
for(;b<=a;b++)
{
c=c+b;
}
}
cout<<"the sum of all the numbers between them is "<<c<<"\n\n";
goto re;
system("pause");
return 0;
}
複製代碼
作者:
孟涵
時間:
2023-6-20 19:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int k;
cout<<"請輸入第一個數: ";
cin>>k;
int i;
cout<<"請輸入第二個數: ";
cin>>i;
int sum=0;
{
for(int f=k; f<=i; f++)
sum+=f;
{
cout<<"從"<<k<<"到"<<i<<"所有整數的總和為: "<<sum<<endl;
}
}
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
徐楷恩
時間:
2023-6-20 19:28
本帖最後由 徐楷恩 於 2023-6-20 20:24 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int i ,j ,f=0;
cout<<"請輸入第一個數: ";
cin>>i;
cout<<"請輸入第二個數: ";
cin>>j;
if(i<j)
{
for(int a=i;a<=j;a++)
f+=a;
}
else
{
for(int a=j;a<=i;a++)
f+=i ;
}
cout<<"從"<<i<<"到"<<j<<"所有整數的總和為: "<<f<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
楊承樺
時間:
2023-6-20 19:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a,b,c=0;
cout<<"請輸入第一個數: ";
cin>>a;
cout<<"請輸入第二個數: ";
cin>>b;
if(a>b)
{
for(b;b<=a;b++)
{
c=c+b;
}
}
else
{
for(b;b>=a;b--)
{
c=c+b;
}
}
cout<<"從"<<a<<"到"<<b<<"所有整數的總合為: "<<c<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
蕭宏宇
時間:
2023-6-20 19:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x,y,z,e;
cout<<"請輸入第一個數: ";
cin>>x;
cout<<"請輸入第二個數: ";
cin>>y;
if(x<y)
{
for(int i=x;i<=y;i++)
z=i+z;
cout<<"從x到y所有整數的總和為: "<<z<<endl;
}
else(x>y)
{
for(int a=y;a<=x;a++)
e=e+a;
}
cout<<"從x到y所有整數的總和為: "<<e<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
黃郁甯
時間:
2023-6-24 10:05
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y,sum=0;
cout<<"請輸入低一個數";
cin>>x;
cout<<"請輸入第二個數";
cin>>y;
if(x<y)
{
for(int i=x;i<=y;i++)
sum+=i;
}
else
{
for(int i=y;i<x;i++)
sum+=i;
}
cout<<"從"<<x<<"到"<<y<<"的所有整數合為"<<sum<<endl<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳曜誌
時間:
2024-7-12 20:29
本帖最後由 陳曜誌 於 2024-7-12 21:13 編輯
#include<iostream>
using namespace std;
int main()
{
re:
int x,y,sum=0;
cout<<"請輸入第一個數: ";
cin>>x;
cout<<"請輸入第二個數: ";
cin>>y;
if(x<y)
{
for(int i=x; i<=y; i++)
sum+=i;
}else
{
for(int i=y; i<=x; i++)
sum+=i;
}
cout<<"從"<<x<<"到"<<y<<"所有整數的總合為: "<<sum<<endl<<endl;
goto re;
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2