標題:
2024/01/06 上課重點(家鉌)
[打印本頁]
作者:
陳育霖
時間:
2024-1-6 12:25
標題:
2024/01/06 上課重點(家鉌)
本帖最後由 陳育霖 於 2024-1-6 20:53 編輯
遠距教學連結
會議連結 - 1
會議連結 - 2
今日上課重點:
502 數字相乘
503 區間運算
504 迴文數
505 公式計算
506 質因數分解
507 猜數字
今日作業:
C++證照 201-210
送出KitaJudge並
AC
今日考試:
309 函式與陣列(最小的分數值)
410 字串與檔案處理 (字首轉大寫)
作者:
林家鉌
時間:
2024-1-6 15:26
林家鉌 2024/1/6 簽到
作者:
林家鉌
時間:
2024-1-6 15:49
#include<bits/stdc++.h>
using namespace std;
float compute(int a[6])
{
float b[3];
for(int i=0;i<3;i++)
b[i]=(a[i]+0.0)/(a[i+3]+0.0);
return min(b[0],min(b[1],b[2]));
}
int main()
{
int a[6];
for(int i=0;i<6;i++)
cin>>a[i];
cout<<fixed<<setprecision(3)<<compute(a);
return 0;
}
複製代碼
作者:
林家鉌
時間:
2024-1-6 16:13
#include<bits/stdc++.h>
using namespace std;
int main()
{
ifstream in;
in.open("read.txt");
ofstream ou;
ou.open("write.txt");
string s;
int a;
cin>>a;
while(a--)
{
getline(in,s);
for(int i=0;i<s.size();i++)
{
if(i==0||s[i-1]==' ')
{
ou<<char(s[i]-'a'+'A');
cout<<char(s[i]-'a'+'A');
}
else
{
ou<<s[i];
cout<<s[i];
}
}
cout<<"\n";
ou<<"\n";
}
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2