標題:
字串處理 (九) - 將ASCII碼轉換為字串
[打印本頁]
作者:
陳品肇
時間:
2019-6-29 12:21
標題:
字串處理 (九) - 將ASCII碼轉換為字串
本帖最後由 陳品肇 於 2019-6-29 14:33 編輯
[attach]6696[/attach]
#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;
}
複製代碼
作者:
王瑞喻
時間:
2019-6-29 14:25
#include<iostream>
#include<cstdlib>
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;
}
複製代碼
作者:
曲書辰
時間:
2019-6-29 14:27
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
int a,b,d=0;
cout<<"請輸入1~127的數字轉會為ASCLL:"<<endl;
cout<<"起始質:";
cin>>a;
cout<<"終止質";
cin>>b;
d=b-a;
for(int i=0;i<=d;i++)
{
cout<<char(a)<<" ";
a+=1;
}
system("pause");
return 0;
}
複製代碼
作者:
湯郡一
時間:
2019-6-29 14:28
#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;
}
複製代碼
作者:
洪寬瀧
時間:
2019-6-29 14:34
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
int o,m;
//char str[100];
cout<<"請在此輸入ascii碼範圍(0~127): ";
/*cin.getline(str,127);
cout<<"此字串的ASCII字元碼依序為:"<<endl;*/
cout<<"起始值"<<endl;
cin>>o;
cout<<"終止值"<<endl;
cin>>m;
for(int i=o;i<=m;i++)
{
cout<<char(i)<<" ";
}
system("pause");
return 0;
}
複製代碼
作者:
田宇任
時間:
2019-6-29 14:35
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
int start,over;
char king[127];
cout<<"輸入ASCII碼(0~127):"<<endl;
cout<<"起始值:";
cin>>start;
cout<<"終止值:";
cin>>over;
cout<<"所得字串:"<<endl;
for(int a=start;a<=over;a++)
{
cout<<char(a);
}
system("pause");
return 0;
}
複製代碼
作者:
吳孟修
時間:
2019-7-6 12:59
#include<iostream>
#include<cstdlib>
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;
}
複製代碼
作者:
吳孟書
時間:
2019-7-6 13:08
#include<iostream>
#include<cstdlib>
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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2