標題:
字串處理 (九) - 將ASCII碼轉換為字串
[打印本頁]
作者:
tonyh
時間:
2014-7-26 17:23
標題:
字串處理 (九) - 將ASCII碼轉換為字串
本帖最後由 tonyh 於 2014-7-26 17:48 編輯
[attach]931[/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;
}
複製代碼
作者:
林宇翔
時間:
2014-7-26 17:28
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
char str[100];
int ASCIII,ASCII;
cout <<"請輸入ASCII碼範圍(0~127):"<<endl ;
cout <<"起始值"<<endl;
cin >> ASCIII;
cout <<"終止值"<<endl;
cin >> ASCII;
cin.getline(str,100);
cout <<"所得字串"<< endl;
for(int i = ASCIII;i<=ASCII;i++)
cout <<char(i) << endl;
system("pause");
return 0;
}
複製代碼
作者:
李允軒
時間:
2014-7-26 17:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int start, end;
cout << "請輸入你要轉換的ASUII碼" << endl;
cout << "起始值";
cin >> start;
cout << "終止值";
cin >> end;
cout << "你輸入的字串為" << endl;
for(int i = start; i < end; i++)
cout << char(i) << endl;
system("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2014-7-26 17:30
#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);
system("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2014-7-26 17:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b;
cout<<"在此輸入ASCII碼範圍<0~127>: "<<endl;
cout<<"起始值: "<<endl;
cin>>a;
cout<<"終止值: "<<endl;
cin>>b;
cout<<""<<endl;
for(int i=a; i<=b; i++)
cout<<char(i)<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2014-7-26 17:50
#include<iostream>
#include<cstdlib>
#include<string>
using namespace std;
int main()
{
int ascii_s,ascii_e;
cout<<"在此輸入ASCII碼範圍(0~127:)"<<endl;
cout<<"起始值:";
cin>>ascii_s;
cout<<"終止值:";
cin>>ascii_e;
cout<<"所得字串: "<<endl;
for(int i=ascii_s;i<=ascii_e;i++)
cout<<char(i);
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
周雍程
時間:
2014-7-31 16:11
#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<<char(i);
system("pause");
return 0;
}
複製代碼
作者:
劉得旗
時間:
2014-7-31 16:12
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2