標題:
1131101特輔(昀杰)
[打印本頁]
作者:
may
時間:
2024-10-27 16:47
標題:
1131101特輔(昀杰)
找零錢程式(一)
因數分解 (二)
因數分解 (三)
因數分解 (四)
因數分解 (五)
三數求公因數
兩數對調
求最大公因數 (輾轉相除法)
平、閏年判定(c++)
作業:
因數分解 (六) - 求最大公因數 (break敘述)
質數 (一) - 判斷是否為質數
質數 (二) - 1000以內的質數有哪些?
[隨堂測驗] 時間換算機
作者:
陳昀杰
時間:
2024-11-1 19:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int g;
cin>>g;
for(int a=1;a<=g;a++)
{
if (g%a==0)
{
cout<<a<<endl;
}
}
system("pause");
return 0;
}
複製代碼
作者:
陳昀杰
時間:
2024-11-1 19:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int s=0;
int g;
cin>>g;
for(int a=1;a<=g;a++)
{
if (g%a==0)
{
s=a+s ;
cout<<a<<endl;
}
}
cout<<s<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳昀杰
時間:
2024-11-1 20:02
#include<bits/stdc++.h>
using namespace std;
int main()
{
int s;
int g;
int p;
int t=0;
cin>>s>>g;
if(s>g)
p=g;
else
p=s;
for(int i=1;i<p;i++)
{
if(g%i==0&&s%i==0)
{
cout<<i<<endl;
t=t+1;
}
}
cout<<t<<endl;
}
複製代碼
作者:
陳昀杰
時間:
2024-11-1 20:05
#include<bits/stdc++.h>
using namespace std;
int main()
{
int s;
int g;
int p;
int t=0;
cin>>s>>g;
if(s>g)
p=g;
else
p=s;
for(int i=1;i<p;i++)
{
if(g%i==0&&s%i==0)
{
t=i;
}
}
cout<<t<<endl;
}
複製代碼
作者:
陳昀杰
時間:
2024-11-1 20:51
#include<bits/stdc++.h>
using namespace std;
int main()
{
int s;
int g;
int j;
cin>>s>>g;
do
{
j=g;
g=s%g;
s=j;
}while(s%g!=0);
cout<<g<<endl;
}
複製代碼
作者:
陳昀杰
時間:
2024-11-1 21:01
using namespace std;
int main()
{
int s;
cin>>s;
if(s%400==0){
cout<<"潤"<<endl;
}
else if(s%100==0){
cout<<"平"<<endl;
}
else if(s%4==0){
cout<<"潤"<<endl;
}
else{
cout<<"平"<<endl;
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2