標題:
2025/3/14 課堂重點(若恩)
[打印本頁]
作者:
郭竑志
時間:
2025-3-14 21:00
標題:
2025/3/14 課堂重點(若恩)
本帖最後由 郭竑志 於 2025-3-14 21:17 編輯
[課堂重點]
408 字串與檔案處理 (字串長度與反轉連結)
409 字串與檔案處理 (字串加密)
501 字串轉換
[今日作業]
410 字串與檔案處理 (字首轉大寫)
502 數字相乘
作者:
何若恩
時間:
2025-3-14 21:12
#include <bits/stdc++.h>
using namespace std;
int main(int argc, char** argv) {
string a, b;
cin>>a>>b;
cout<<a.size();
cout<<b.size();
string c, c1;
c=a+b;
for(int i=c.size();i>=0;i--){
int j=0;
c[i]=c1[j];
j++;
}
if(c.size()==c1.size()){
cout<<c1;
}
return 0;
}
複製代碼
作者:
何若恩
時間:
2025-3-14 21:13
#include <bits/stdc++.h>
using namespace std;
int main(int argc, char** argv) {
ifstream ifs;
ofstream ofs;
ifs.open("C:\\Users\\student\\Downloads\\read.txt");
ofs.open("C:\\Users\\student\\Downloads\\write.txt");
string s;
getline(ifs, s);
for(int i=0;i<s.size();i++){
s[i]=s[i]+2;
}
cout<<s<<endl;
ofs<<s;
return 0;
}
複製代碼
作者:
何若恩
時間:
2025-3-14 21:18
#include <bits/stdc++.h>
using namespace std;
int main(int argc, char** argv) {
string a;
cin>>a;
cout<<stoi(a);
return 0;
}
複製代碼
作者:
何若恩
時間:
2025-3-14 21:34
#include <bits/stdc++.h>
using namespace std;
int main(int argc, char** argv) {
string a;
int m=1;
cin>>a;
for(int i=0;i<a.size();i++){
if(i==0){
m=m*a[i];
cout<<a[i];
}else{
m=m*a[i];
cout<<"*"<<a[i];
}
}
cout<<"="<<m;
return 0;
}
複製代碼
作者:
何若恩
時間:
6 天前 18:47
#include <bits/stdc++.h>
using namespace std;
int main(int argc, char** argv) {
ifstream ifs;
ofstream ofs;
ifs.open("C:\\Users\\student\\Downloads\\read.txt");
ofs.open("C:\\Users\\student\\Downloads\\write.txt");
string s;
getline(ifs, s);
int n;
cin>>n;
string s;
cout<<s<<endl;
ofs<<s<<endl;
複製代碼
作者:
何若恩
時間:
6 天前 20:28
#include <bits/stdc++.h>
using namespace std;
int main(int argc, char** argv) {
ifstream ifs;
ofstream ofs;
ifs.open("C:\\Users\\student\\Downloads\\read.txt");
ofs.open("C:\\Users\\student\\Downloads\\write.txt");
int n;
cin>>n;
string s;
for(int i=1;i<=n;i++){
getline(ifs, s);
stringstream ss(s);
string word;
string result="";
while(ss>>word){
word[0]=toupper(word[0]);
result+=word+" ";
}
cout<<result<<endl;
ofs<<result<<endl;
}
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2