標題:
2023/09/02 課堂重點
[打印本頁]
作者:
陳育霖
時間:
2023-8-31 23:19
標題:
2023/09/02 課堂重點
今日上課重點:
複習
206 選擇敘述與迴圈 (奇數和)
複習
301 函式與陣列 (小星星)
310 函式與陣列 (阿姆斯壯數)
今日作業:
106 基本認識 (計算兩點座標的距離)
208 選擇敘述與迴圈 (找質數)
考試:
202 選擇敘述與迴圈 (分數調整)
306 函式與陣列 (階乘)
錄影連結:
https://drive.google.com/drive/f ... 5NnEpBz?usp=sharing
作者:
林羿丞
時間:
2023-9-2 10:34
本帖最後由 林羿丞 於 2023-9-2 10:45 編輯
#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
cin>>n;
if(n>100 ||n<0)
cout<<"error"<<endl;
else
cout << (n>60? n+10:n+5) << endl;
}
#include<bits/stdc++.h>
using namespace std;
int compute(int n){
if(n==0)
return 1;
else
return n*compute(n-1);
}
int main(){
int n;
cin>>n;
cout<<n<<"!="<<compute(n)<<endl;
}
複製代碼
作者:
王銘鴻
時間:
2023-9-7 21:21
#include<bits/stdc++.h>
using namespace std;
int a1,a2,a3,a4;
int main()
{
cin >> a1 >> a2 >> a3 >> a4;
printf("%.2f\n",sqrt(pow(a1-a3,2)+pow(a2-a4,2)));
return 0;
}
複製代碼
作者:
王銘鴻
時間:
2023-9-7 21:34
#include<bits/stdc++.h>
using namespace std;
int a1;
int main ()
{
cin >> a1 ;
for(int j=2;j<a1;j++)
{
bool prime=true;
for(int i=2;i<=sqrt(j);i++)
{
if(j%i==0)
{
prime=false;
}
}
if(prime)
cout<< j <<" ";
}
return 0;
}
複製代碼
作者:
林羿丞
時間:
2023-9-9 10:34
本帖最後由 林羿丞 於 2023-9-9 10:35 編輯
#include<bits/stdc++.h>
using namespace std;
int main(){
int a,b,c,d;
cin>>a>>b>>c>>d;
printf("%.2f\n",sqrt(pow(c-a,2)+pow(d-b,2)));
}
複製代碼
作者:
林羿丞
時間:
2023-9-9 10:35
#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
cin>>n;
for(int t=2; t<n; t++)
{
bool b=true;
for(int i=2; i<t; i++)
{
if(t%i==0)
{
b=false;
break;
}
}
if(b==true)
cout<<t<<" ";
}
return 0;
}
複製代碼
作者:
曾宥程
時間:
2023-9-9 10:36
本帖最後由 曾宥程 於 2023-9-9 10:48 編輯
#include<bits/stdc++.h>
using namespace std;
int a,b,c,d;
int main()
{
cin >> a >> b >> c >> d;
printf("%.2f",sqrt(pow((c-a),2)+pow((d-b),2)));
return 0;
}
複製代碼
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin >> n;
for(int i=2 ; i<n ; i++)
{
bool isPrime = true;
for(int j=2 ; j<=sqrt(i) ; j++)
{
if(!(i%j))
isPrime = false;
}
if(isPrime)
cout << i <<" ";
}
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2