標題:
2025/3/22冠毅
[打印本頁]
作者:
郭竑志
時間:
2025-3-22 15:00
標題:
2025/3/22冠毅
本帖最後由 郭竑志 於 2025-3-22 15:59 編輯
[課堂重點]
410 字串與檔案處理 (字首轉大寫)
[今日作業]
複習101~110
作者:
劉冠毅
時間:
2025-3-22 15:57
#include<bits/stdc++.h>
using namespace std;
int main()
{
int i=0;
char o;
string h;
ifstream ifs;
ifs.open("C:\\Users\\student\\Downloads\\read.txt");
string str;
ofstream ofs;
ofs.open("write.txt");
cin>>i;
for(int y=0;y<i;y++){
getline(ifs,str);
o=str[0]-32;
ofs<<o;
int r;
r=str.length();
for(int u=1;u<r;u++){
o=str[u];
if(str[u-1]==' ')
o=o-32;
ofs<<o;
cout<<o;
}
ofs<<'\n';
}
return 0;
}
複製代碼
作者:
劉冠毅
時間:
6 天前 22:39
#include<bits/stdc++.h>
using namespace std;
int main() {
int a=0;
cin>>a;
cout<<a+9<<endl;
return 0;
}
複製代碼
作者:
劉冠毅
時間:
6 天前 23:06
本帖最後由 劉冠毅 於 2025-3-28 23:12 編輯
#include<bits/stdc++.h>
using namespace std;
int main() {
float a=0;
cin>>a;
cout<<a*23.34<<endl;
printf("%.2f\n",a);
return 0;
}
作者:
劉冠毅
時間:
6 天前 23:20
#include<bits/stdc++.h>
using namespace std;
int main() {
float a,b,c,o;
cin>>a>>b>>c;
o=a+b+c;
printf("%.2f\n",o);
return 0;
}
複製代碼
作者:
劉冠毅
時間:
6 天前 23:32
#include<bits/stdc++.h>
using namespace std;
int main() {
float a,b,o;
cin>>a>>b;
o=a+b;
printf("%.2f/n",o);
return 0;
}
複製代碼
作者:
劉冠毅
時間:
6 天前 23:37
#include<bits/stdc++.h>
using namespace std;
int main() {
float a,b,o;
cin>>a>>b;
o=a+b;
o=sqrt(o);
printf("%.2f/n",o);
return 0;
}
複製代碼
作者:
劉冠毅
時間:
5 天前 00:02
本帖最後由 劉冠毅 於 2025-3-29 00:06 編輯
#include<bits/stdc++.h>
using namespace std;
int main() {
float a,b,c,d,o,p;
cin>>a>>b>>c>>d;
o=a-b;
p=c-d;
o=(o*o)+(p*p);
o=o+p;
o=sqrt(o);
printf("%.2f/n",o);
return 0;
}
複製代碼
作者:
劉冠毅
時間:
5 天前 00:14
#include<bits/stdc++.h>
using namespace std;
int main() {
float a,b,c,d,o,p;
cin>>a>>b>>c>>d>>o>>p;
print("%10.f",a);
print("%10.f",b);
print("%10.f\n",c);
print("%10.f",d);
print("%10.f",o);
print("%10.f",p);
print("%-10.f",a);
print("%-10.f",b);
print("%-10.f\n",c);
print("%-10.f",d);
print("%-10.f",o);
print("%-10.f",p);
return 0;
}
複製代碼
作者:
劉冠毅
時間:
5 天前 00:17
#include<bits/stdc++.h>
using namespace std;
int main() {
float a,b;
cin>>a;
cout<<a;
print("%.2f\n",a/2);
b=(a/2)*(a/2)*3.14;
print("%.4f\n",b);
return 0;
}
複製代碼
作者:
劉冠毅
時間:
5 天前 00:24
#include<bits/stdc++.h>
using namespace std;
int main() {
float a;
cin>>a;
if(a>60 or a<100){
cout<<"pass";
}else if (a>0 or a<60){
cout<<"fail";
}else{
cout<<"error";
}
if(a%2==0){
cout<<"even";
}else{
cout<<"odd";
}
return 0;
複製代碼
作者:
劉冠毅
時間:
5 天前 00:29
#include<bits/stdc++.h>
using namespace std;
int main() {
float a,b,c;
cin>>a>>b>>c;
If (a<60 and a>100){
cout<<"1";
}else{
cout<<"0";
}
printf("%.2f\n",(b+1)/10)
if(a>c){
cout<<a;
}else {
cout<<c;
}
return 0;
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2