標題:
2025/3/7 課堂重點(昀杰)
[打印本頁]
作者:
郭竑志
時間:
2025-3-7 18:40
標題:
2025/3/7 課堂重點(昀杰)
本帖最後由 郭竑志 於 2025-3-7 19:34 編輯
[課程重點]
字串處理 (五) - 英文大小寫轉換
字串處理 (六) - 取得字串長度 1
字串處理 (七) - 取得字串長度 2
字串處理 (八) - 將字串轉換為ASCII碼
stringstream 字串串流 (一)
[今日作業]
字串處理 (九) - 將ASCII碼轉換為字串
字串處理 (十) - 判斷大小寫
作者:
陳昀杰
時間:
2025-3-7 19:19
#include<bits/stdc++.h>
using namespace std;
int main() {
string str;
cout << ;
getline(cin, str);
transform(str.begin(), str.end(), str.begin(), ::toupper);
cout << str << endl;
transform(str.begin(), str.end(), str.begin(), ::tolower);
cout << str << endl;
return 0;
}
複製代碼
作者:
陳昀杰
時間:
2025-3-7 19:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
char str[50];
cout<<"輸入一字串: ";
cin.getline(str,50);
for (int i = 0; str[i] != '\0'; i++)
sum++;
cout<<"本字串共包含: "<<sum<<" 個字元"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳昀杰
時間:
2025-3-7 19:50
#include<iostream>
#include<cstdlib>
#include<sstream>
using namespace std;
int main()
{
stringstream ss;
string str1="abc";
string str2="狗咬豬";
int a=12;
float b=3.456;
ss<<str1<<str2<<a<<b<<"...";
cout<<ss.str()<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳昀杰
時間:
2025-3-14 17:46
#include<iostream>
using namespace std;
int main()
{
string s;
getline(cin,s);
for(int i=0;i<s.size();i++)
{
if(s[i]>=65 && s[i]<=91)
{
cout<<s[i];
cout<<"up"<<endl;
}
else if(s[i]>=97 && s[i]<=122)
{
cout<<s[i];
cout<<"down"<<endl;
}
else
{
cout<<s[i];
cout<<"no"<<endl;
}
}
}
複製代碼
作者:
陳昀杰
時間:
2025-3-14 17:47
#include<iostream>
using namespace std;
int main()
{
int a,b;
cin>>a>>b;
for(int i=a;i<b;i++)
{
cout<<char(i);
}
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2