標題:
字串處理 (九) - 將ASCII碼轉換為字串
[打印本頁]
作者:
tonyh
時間:
2021-7-3 19:26
標題:
字串處理 (九) - 將ASCII碼轉換為字串
本帖最後由 tonyh 於 2021-7-3 19:36 編輯
提示: char(ASCII碼) --> 字元
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int start, end;
cout<<"在此輸入ASCII碼範圍(0~127)"<<endl;
cout<<"起始值: ";
cin>>start;
cout<<"終止值: ";
cin>>end;
cout<<"所得字串:"<<endl;
for(int i=start; i<=end; i++)
cout<<char(i);
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
余柏緯
時間:
2021-7-3 19:37
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
int s,e;
cout<<"在此輸入ASCII碼範圍(0~127):"<<endl;
cout<<"起始值:";
cin>>s;
cout<<"終止值:";
cin>>e;
cout<<"所得字串:"<<endl;
for(int i=s;i<=e;i++)
{
cout<<char(i)<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
王宇崴
時間:
2021-7-3 19:37
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
int s, e;
cout<<"在此輸入ASCII碼範圍(o~127)"<<endl;
cout<<"起始值: ";
cin>>s;
cout<<"終止值: ";
cin>>e;
cout<<"所得字串:"<<endl;
for(int i=s; i<=1; i++)
cout<<char(i);
system("pause");
return 0;
}
複製代碼
作者:
林鼎傑
時間:
2021-7-3 19:37
本帖最後由 林鼎傑 於 2021-7-3 19:40 編輯
#include<iostream>
#include<cstdlib>
#include<cstring>
using namespace std;
int main()
{
int a,b;
cout<<"在此輸入ASCII碼範圍(0~127): "<<endl;
cout<<"起始值: ";
cin>>a;
cout<<"終止值: ";
cin>>b;
cout<<"所得字串:"<<endl;
for(int i=a; i<=b; i++)
cout<<char(i);
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃子倢
時間:
2021-7-3 19:37
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
int start,end;
cout<<"在此輸入ASKII碼"<<endl;
cout<<"起始值:";
cin>>start;
cout<<"終止值:";
cin>>end;
cout<<"所得字串:";
for(int i=start; i<=end; i++)
{
cout<<char(i);
cout<<" ";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
俞成章
時間:
2021-7-3 19:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int start, end;
cout<<"在此輸入ASCII碼範圍(0~127)"<<endl;
cout<<"起始值: ";
cin>>start;
cout<<"終止值: ";
cin>>end;
cout<<"所得字串:"<<endl;
for(int i=start; i<=end; i++)
cout<<char(i);
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
朱奕祐
時間:
2021-7-3 19:40
#include<iostream>
#include<cstdlib>
#include<cstring>
using namespace std;
int main()
{
int s, e;
cout<<"在此輸入ASCII碼範圍(0~127)"<<endl;
cout<<"起始值: ";
cin>>s;
cout<<"終止值: ";
cin>>e;
cout<<"所得字串:"<<endl;
for(int i=s; i<=e; i++)
cout<<char(i);
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許洧熏
時間:
2021-7-3 19:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int start,end;
cout<<"在此輸入ASCII碼範圍(0~127)"<<endl;
cout<<"起始值: ";
cin>>start;
cout<<"終止值: ";
cin>>end;
cout<<"所得字串: "<<endl;
for(int i=start; i<=end; i++)
cout<<char(i);
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
呂尚霖
時間:
2021-7-3 19:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int start, end;
cout<<"在此輸入ASCII碼範圍(0~127)"<<endl;
cout<<"起始值:";
cin>>start;
cout<<"終止值:";
cin>>end;
cout<<"所得字串:"<<endl;
for(int i=start; i<=end; i++)
cout<<char(i);
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王秉鈞
時間:
2021-7-3 19:41
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
int start,end;
cout<<"在此輸入ASCII碼範圍(0~127)"<<endl;
cout<<"起始值";
cin>>start;
cout<<"終止值";
cin>>end;
cout<<"所得字串"<<endl;
for(int i=start;i<=end;i++)
cout<<char(i);
cout<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2