返回列表 發帖

字串處理 (九) - 將ASCII碼轉換為字串1


提示: char(ASCII碼) --> 字元
字串處理 (八)是int去包char ->輸入字元取得整數
這個反過來char去包int ->輸入整數取得字元
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     int x;
  8.     cout<<"在此輸入ASCII碼範圍(0~127)"<<endl;
  9.     cout<<"值: ";
  10.     cin>>x;
  11.     cout<<"所得字元:"<<char(x)<<endl;

  12.     goto re;
  13.     system("pause");     
  14.     return 0;   
  15. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見
Attention Seeker </3

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表