標題:
因數分解 (六) - 求最大公因數 (break敘述)
[打印本頁]
作者:
歐柏罕
時間:
2017-12-25 19:50
標題:
因數分解 (六) - 求最大公因數 (break敘述)
利用break敘述, 於符合條件時, 立即跳出迴圈.
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a = 0;
int b = 0;
int small = 0;
int ans = 0;
while(true)
{
system("cls");
cout<<"輸入第一正整數: ";
cin>>a;
cout<<"輸入第二正整數: ";
cin>>b;
small=a<b?a:b;
cout<<a<<" 與 "<<b<<"的最大公因數: ";
//for(int i=1;i<=small;i++)
for(int i=small;i>=1;i--)
{
if(a%i==0 && b%i==0)
{
ans++;
cout<<i<<" ";
break;//while迴圈 和 for迴圈 ,跳離迴圈
}
}
cout<<"共有"<<ans<<"個!"<<endl;
system("pause");
}
return 0;
}
複製代碼
作者:
盧佑恩
時間:
2017-12-25 19:50
此帖僅作者可見
作者:
沈子晏
時間:
2017-12-25 19:51
此帖僅作者可見
作者:
洪翊庭
時間:
2017-12-25 19:51
此帖僅作者可見
作者:
盧佑芯
時間:
2017-12-25 19:52
此帖僅作者可見
作者:
曾堂桂
時間:
2017-12-25 19:54
此帖僅作者可見
作者:
洪啓銓
時間:
2017-12-25 19:57
此帖僅作者可見
作者:
洪翊展
時間:
2017-12-25 19:59
此帖僅作者可見
作者:
李治毅
時間:
2017-12-25 20:08
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2