Board logo

標題: 2025/3/28 課堂重點(若恩) [打印本頁]

作者: 郭竑志    時間: 6 天前 20:28     標題: 2025/3/28 課堂重點(若恩)

本帖最後由 郭竑志 於 2025-3-28 20:30 編輯

[課堂重點]
503 區間運算
504 迴文數
505 公式計算
506 質因數分解
[今日作業]
複習101~110 (t001~t010)
作者: 何若恩    時間: 6 天前 20:51

  1. #include <bits/stdc++.h>
  2. using namespace std;

  3. int main(int argc, char** argv) {
  4.     int a, b;
  5.     cin>>a>>b;
  6.     for(int i=1;i<a;i++){
  7.         if(sqrt(i)==int(sqrt(i))){
  8.             int j;
  9.             j=pow(i,b);
  10.             j=sqrt(j);
  11.             cout<<j<<endl;
  12.         }
  13.     }
  14.     return 0;
  15. }
複製代碼

作者: 何若恩    時間: 6 天前 21:20

  1. #include <bits/stdc++.h>
  2. using namespace std;

  3. int main(int argc, char** argv) {
  4.     string s,a;
  5.     cin>>s;
  6.     for(int i=0, j=s.length()-1;i<s.length();i++, j--){
  7.         s[i]=a[j];
  8.     }     
  9.     if(s==a){
  10.         cout<<"Yes";
  11.     }else{
  12.         cout<<"No";
  13.     }
  14.     return 0;
  15. }
複製代碼

作者: 何若恩    時間: 5 天前 21:40

  1. #include <bits/stdc++.h>
  2. using namespace std;

  3. int main(int argc, char** argv) {
  4.     float a;
  5.     cin>>a;
  6.     a=a*23.34;
  7.     printf ("%.2f", a);  
  8.     return 0;
  9. }
複製代碼

作者: 何若恩    時間: 5 天前 21:41

  1. #include <bits/stdc++.h>
  2. using namespace std;

  3. int main(int argc, char** argv) {
  4.     int a;
  5.     cin>>a;
  6.     cout<<a+9;
  7.     return 0;
  8. }
複製代碼

作者: 何若恩    時間: 5 天前 21:47

  1. #include <bits/stdc++.h>
  2. using namespace std;

  3. int main(int argc, char** argv) {
  4.     float a, b, c;
  5.     float mean;
  6.     cin>>a>>b>>c;
  7.     cout<<a<<"+"<<b<<"+"<<c<<"="<<a+b+c<<endl;
  8.     mean=(a+b+c)/3;
  9.     printf ("%.2f", mean);  
  10.     return 0;
  11. }
複製代碼

作者: 何若恩    時間: 5 天前 21:50

  1. #include <bits/stdc++.h>
  2. using namespace std;

  3. int main(int argc, char** argv) {
  4.     float a, b;
  5.     float total;
  6.     cin>>a>>b;
  7.     total=a+b;
  8.     cout<<"total=";
  9.     printf ("%.2f", total);  
  10.     return 0;
  11. }
複製代碼

作者: 何若恩    時間: 5 天前 21:55

  1. #include <bits/stdc++.h>
  2. using namespace std;

  3. int main(int argc, char** argv) {
  4.     float a, b;
  5.     float result;
  6.     cin>>a>>b;
  7.     result=a+b;
  8.     result=pow(result,0.5);
  9.     cout<<"result=";
  10.     printf ("%.2f", result);  
  11.     return 0;
  12. }
複製代碼

作者: 何若恩    時間: 5 天前 22:04

  1. #include <bits/stdc++.h>
  2. using namespace std;

  3. int main(int argc, char** argv) {
  4.     float a, b, c, d;
  5.     float x, y, result;
  6.     cin>>a>>b>>c>>d;
  7.     x=pow(c-a,2);
  8.     y=pow(d-b,2);
  9.     result=pow(x+y,0.5);
  10.     printf ("%.2f", result);  
  11.     return 0;
  12. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2