標題:
字串處理 (九) - 將ASCII碼轉換為字串
[打印本頁]
作者:
陳品肇
時間:
2019-4-11 14:37
標題:
字串處理 (九) - 將ASCII碼轉換為字串
[attach]6281[/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-4-13 16:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int start ,end;
cout<<"起點:";
cin>>start;
cout<<"終點:";
cin>>end;
for(int i=start; i<=end; i++)
cout<<i<<"->"<<char(i)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡依宸
時間:
2019-4-13 16:54
#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-4-13 16:56
#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;
}
複製代碼
作者:
戴安利
時間:
2019-4-13 16:57
#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-4-13 16:58
#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-4-13 16:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int start,end;
cout<<"請輸入ASCII範圍(1-127)"<<endl;
cout<<"起始值"<<endl;
cin>>start;
cout<<"終止值"<<endl;
cin>>end;
cout<<"所得字串"<<endl;
for(int i=start;i<=end;i++)
cout<<char(i);
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡季庭
時間:
2019-4-13 17:01
#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://seed.istak.org.tw/)
Powered by Discuz! 7.2