Contents

Views 18079 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. [c++] 가짜 인증서(하나은행) 프로그램

    Date2013.04.23 CategoryDevelop Byhooni Views11811
    Read More
  2. [c++] 기초강좌 #01(입출력,영역지정)

    Date2003.04.23 CategoryDevelop Byhooni Views12312
    Read More
  3. [c++] 기초강좌 #02(레퍼런스,메모리할당)

    Date2003.04.23 CategoryDevelop Byhooni Views12696
    Read More
  4. [c++] 기초강좌 #03(함수의 매개변수 전달)

    Date2003.04.23 CategoryDevelop Byhooni Views13340
    Read More
  5. [c++] 기초강좌 #04(클래스)

    Date2003.04.23 CategoryDevelop Byhooni Views12806
    Read More
  6. [c++] 더블 링크리스트(linked list) 학습용 초간단 단어장

    Date2003.04.23 CategoryDevelop Byhooni Views10461
    Read More
  7. [c++] 데이터 압축 프로그램 소스 (lzw)

    Date2013.04.23 CategoryDevelop Byhooni Views11805
    Read More
  8. [c++] 디렉토리 내의 파일 찾기 FindFirstFile() 함수

    Date2013.04.23 CategoryDevelop Byhooni Views22882
    Read More
  9. [c++] 레지스트리 등록 예제

    Date2013.04.23 CategoryDevelop Byhooni Views9721
    Read More
  10. [c++] 레지스트리 편집하는 부분..ㅡㅡ;

    Date2013.04.23 CategoryDevelop Byhooni Views8998
    Read More
  11. [c++] 링크리스트(linked list) 클래스(스택,큐)

    Date2003.04.23 CategoryDevelop Byhooni Views10848
    Read More
  12. [c++] 마방진 소스코드

    Date2013.04.23 CategoryDevelop Byhooni Views10570
    Read More
Board Pagination Prev 1 ... 10 11 12 13 14 15 16 17 18 19 ... 99 Next
/ 99