標題:
2024/01/06 課堂重點
[打印本頁]
作者:
陳育霖
時間:
2024-1-6 12:28
標題:
2024/01/06 課堂重點
本帖最後由 陳育霖 於 2024-1-6 20:53 編輯
今日重點:
複習
因數分解 (一)
因數分解 (三) - 所有因數的總和
因數分解 (四) - 求公因數
作業:
[訂正] 因數分解 (二) - 共有幾個因數
打字練習網
完成
英文字母
A列第四關到第六關
if...else if...else 票價分類
完成一次
因數分解 (四) - 求公因數
完成一次
今日考試:
打字測驗(二)
因數分解 (二) - 共有幾個因數
下次考試:
因數分解 (五) - 求最大公因數
作者:
黃子瑞
時間:
2024-1-6 16:37
#include<iostream>
#include<cstdilb>
using namespace std;
int main()
{
int age
re:
cout<<"請輸入你的年齡:";
cin>>age;
if(age>=0&&age<=3)
{
cout<<"購買幼兒票(免費入場)"<<endl;
}
else if(age>=4&&age<=12)
{
cout<<"購買兒童票(50元)"<<endl;
}
else if(age>=13&&age<=64)
{
cout<<"購買一般票(100元)"<<endl;
}
else if(age>=&&age<=65)
{
cout<<"購買敬老票(70元)"<<endl;
}
else
cout<<"別鬧了"<<endl;
goto re:
system("pause");
return 0;
}
複製代碼
作者:
張淙鈞
時間:
2024-1-6 20:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b, sum=0;
cout<<"請輸入第一個數: ";
cin>>a;
cout<<"請輸入第二個數: ";
cin>>b;
cout<<a<<"與"<<b<<"的公因數有:";
for(int i=1; i<=a; i++)
{
if(a%i==0 && b%i==0)
{
cout<<i<<' ';
sum++;
}
}
cout<<endl<<"共有"<<sum<<"個!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張凱焱
時間:
2024-1-6 20:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b, sum=0;
cout<<"請輸入第一個數: ";
cin>>a;
cout<<"請輸入第二個數: ";
cin>>b;
cout<<a<<"和"<<b<<"的公因數有: ";
for(int i=1; i<=a; i++)
{
if(a%i==0&&b%i==0)
{
cout<<i<<" ";
sum++;
}
}
cout<<endl<<"共有"<<sum<<"個!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宥澄
時間:
2024-1-6 21:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y,n;
cout << "請輸入第一個數: ";
cin >> x;
cout << "請輸入第二個數: ";
cin >> y;
cout << x << "與" << y << "的最公因數是: ";
int i=1;
while(i<=x)
{
if(x%i==0 && y%i==0)
{
n=i;
}
i++;
}
cout << n << endl;
system("pause");
return 0;
}
複製代碼
作者:
張凱焱
時間:
2024-1-7 09:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int age;
re:
cout<<"請輸入你的年齡: ";
cin>>age;
if(age>=0&&age<=3)
{
cout<<"幼兒票(免費入場)"<<endl;
}
else if(age>=4&&age<=12)
{
cout<<"兒童票(50元)"<<endl;
}
else if(age>=13&&age<=64)
{
cout<<"一般票(100元)"<<endl;
}
else if(age>=65&&age<=200)
{
cout<<"敬老票(70元)"<<endl;
}
else
{
cout<<"別鬧了"<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
鄭以樂
時間:
2024-1-7 13:42
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int age;
re:
cout<<"請數入你的年齡: ";
cin>>age;
if(age>=0&&age<=3)
{
cout<<"購買幼兒票(免費入場)"<<endl;
}
else if(age>=4&&age<=12)
{
cout<<"購買兒童票(50元)"<<endl;
}
else if(age>=13&&age<=64)
{
cout<<"購買一般票(100元)"<<endl;
}
else if(age>=65&&age<=100)
{
cout<<"購買敬老票(70元)"<<endl;
}
else
{
cout<<"別鬧了"<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
鄭以樂
時間:
2024-1-7 13:43
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,sum=0;
cout<<"請輸入第一個數: ";
cin>>a;
cout<<"請輸入第二個數: ";
cin>>b;
cout<<a<<"與"<<b<<"的公因數有: ";
for(int i=1;i<=a;i++)
{
if(a%i==0&&b%i==0)
{
cout<<i<<" ";
sum++;
}
}
cout<<endl;
cout<<"共有" <<sum<<"個!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃子瑞
時間:
2024-1-10 22:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x, y, smaller, sum=0;
cout<<"請輸入第一個數: ";
cin>>x;
cout<<"請輸入第二個數: ";
cin>>y;
smaller=x<y?x:y;
cout<<x<<"與"<<y<<"的公因數有: ";
for(int i=1; i<=smaller; i++)
{
if(x%i==0 && y%i==0)
{
cout<<i<<" ";
sum++;
}
}
cout<<endl<<"共有"<<sum<<"個!"<<endl<<endl;
goto re;
return 0;
}
複製代碼
作者:
李冠霖
時間:
2024-1-12 23:34
#include<iostream>
#include<cstdilb>
using namespace std;
int main()
{
int age
re:
cout<<"請輸入你的年齡:";
cin>>age;
if(age>=0&&age<=3)
{
cout<<"購買幼兒票(免費入場)"<<endl;
}
else if(age>=4&&age<=12)
{
cout<<"購買兒童票(50元)"<<endl;
}
else if(age>=13&&age<=64)
{
cout<<"購買一般票(100元)"<<endl;
}
else if(age>=&&age<=65)
{
cout<<"購買敬老票(70元)"<<endl;
}
else
cout<<"別鬧了"<<endl;
goto re:
system("pause");
作者:
李冠霖
時間:
2024-1-12 23:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x, y, smaller, sum=0;
cout<<"請輸入第一個數: ";
cin>>x;
cout<<"請輸入第二個數: ";
cin>>y;
smaller=x<y?x:y;
cout<<x<<"與"<<y<<"的公因數有: ";
for(int i=1; i<=smaller; i++)
{
if(x%i==0 && y%i==0)
{
cout<<i<<" ";
sum++;
}
}
cout<<endl<<"共有"<<sum<<"個!"<<endl<<endl;
goto re;
return 0;
}
作者:
詠綺
時間:
2024-1-13 17:41
#include<iostream>
#include<cstdilb>
using namespace std;
int main()
{
int age
re:
cout<<"請輸入你的年齡:";
cin>>age;
if(age>=0&&age<=3)
{
cout<<"購買幼兒票(免費入場)"<<endl;
}
else if(age>=4&&age<=12)
{
cout<<"購買兒童票(50元)"<<endl;
}
else if(age>=13&&age<=64)
{
cout<<"購買一般票(100元)"<<endl;
}
else if(age>=&&age<=65)
{
cout<<"購買敬老票(70元)"<<endl;
}
else
cout<<"別鬧了"<<endl;
goto re:
system("pause");
return 0;
}
複製代碼
作者:
詠綺
時間:
2024-1-13 17:42
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c=0;
cout<<"請輸入第一個數:";
cin>>b;
cout<<"請輸入第一個數:";
cin >>a;
cout<<b<<"與"<<a<<"的公因數為:";
for(int s=1;s<=a;s++)
{
if(a%s==0&&b%s==0)
{
c++;
cout<<s<<' ';
}
}
cout<<"\n共有"<<c<<"個!\n";
system("pause");
return 0;
}
複製代碼
作者:
陳宥澄
時間:
2024-1-13 19:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
re:
int s;
cout<<"請輸入你的年齡: ";
cin>>s;
if(s>=200 || s<0)
{
cout<<"別鬧了"<<endl;
}
else if(s>=65)
{
cout<<"購買敬老票(70元)"<<endl;
}
else if(s>=13)
{
cout<<"購買一般票(100元)"<<endl;
}
else if(s>=4)
{
cout<<"購買兒童票(50元)"<<endl;
}
else
{
cout<<"幼兒票(免費入場)"<<endl;
}
goto re;
system ("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2