Contents

Views 17281 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
string class를 이용하여 문자열을 거꾸로 출력하는 프로그램 작성.

확실히 C style로 하는 것보다 편리하다. 
#include<iostream>
#include<string>
using namespace std;

string ReverseString(const string src, int len)
{
      string reverse;

      for(int i=0;i<len;i++)
            reverse+=src.substr(len-i-1,1);

      return reverse;
}

int main()
{
      string origin;
      //cin>>origin;  //space를 문자열의 끝으로 받아들인다. 
      getline(cin,origin); //한줄을 받아들이는 함수 C++ style

      string copy=ReverseString(origin,origin.size());

      cout<<origin<<endl;
      cout<<copy<<endl;

      return 0;
}


?

  1. [switch] 시스코 카탈리스트(Cisco Catalyst) 기본 설정

    Date2013.04.23 CategorySystem/OS Byhooni Views17496
    Read More
  2. [c] ICMP 패킷을 이용한 장난감

    Date2003.04.23 CategoryDevelop Byhooni Views17414
    Read More
  3. [linux] 메일서버 세팅정보(sendmail)

    Date2003.04.23 CategorySystem/OS Byhooni Views17407
    Read More
  4. [linux] 최소한의 커널 설정(커널설치 전체과정)

    Date2003.04.23 CategorySystem/OS Byhooni Views17395
    Read More
  5. [python] 애니팡, 캔디팡 매크로

    Date2013.09.06 CategoryDevelop Byhooni Views17305
    Read More
  6. [windows] 패스워드를 잊어먹었을때..

    Date2003.04.23 CategorySystem/OS Byhooni Views17294
    Read More
  7. [c] 팩토리얼 서버/클라이언트..

    Date2003.04.23 CategoryDevelop Byhooni Views17286
    Read More
  8. [c++] 문자열 뒤집기(문자열 거꾸로 출력)

    Date2013.04.23 CategoryDevelop Byhooni Views17281
    Read More
  9. 암호 알고리즘 및 프로토콜의 이해..

    Date2013.04.23 CategoryAlgorithm Byhooni Views17208
    Read More
  10. [switch] 시스코 스위치 관리자 암호 초기화 방법

    Date2013.04.23 CategorySystem/OS Byhooni Views17186
    Read More
  11. [java] 입출력 스트림 3부 (오브젝트)

    Date2013.04.23 CategoryDevelop Byhooni Views17134
    Read More
  12. [security] 블럭 암호에 대해서..

    Date2013.04.23 CategoryAlgorithm Byhooni Views17118
    Read More
Board Pagination Prev 1 ... 14 15 16 17 18 19 20 21 22 23 ... 98 Next
/ 98