Contents

Views 17289 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. [js] 자바스크립트(Javascript) 코드를 동적으로 삽입하는 방법..

    Date2013.04.23 CategoryDevelop Byhooni Views22881
    Read More
  2. 밸런싱 로봇.. 최종.. (관련 논문도 첨부) ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views22824
    Read More
  3. 레고 마인드스톰 NXT 수도쿠, 큐브 소스코드..

    Date2013.04.23 CategoryDevelop Byhooni Views81444
    Read More
  4. 아두이노 관련 정보..

    Date2013.04.23 CategoryEtc Byhooni Views21774
    Read More
  5. 레고 NXT 마인드스톰 밸런싱 로봇 ㅎㅎ

    Date2013.04.23 CategoryDevelop Byhooni Views57718
    Read More
  6. 모터에 대한 pid 제어.. ㅎㅎ

    Date2013.04.23 CategoryDevelop Byhooni Views18882
    Read More
  7. [doc] UI개발시 유용한 소프트웨어 (개발 및 디버깅 툴)

    Date2013.04.23 CategoryDevelop Byhooni Views12913
    Read More
  8. [flash] 자동차 엔진의 원리 (4행정 사이클 그림)

    Date2013.04.23 CategoryEtc Byhooni Views21228
    Read More
  9. [pdf] GPS의 동작 원리 ㅎㅎ

    Date2013.04.23 CategoryDevelop Byhooni Views23839
    Read More
  10. [android]개발 가이드 및 한글화 문서

    Date2013.04.23 CategoryDevelop Byhooni Views47521
    Read More
  11. [ios] 아이폰 개발 따라하기 ㅋㅋㅋ

    Date2013.04.23 CategoryEtc Byhooni Views23307
    Read More
  12. [android] 해상도 관련 팁 (dip -> pixel 변환)

    Date2013.04.23 CategoryDevelop Byhooni Views15338
    Read More
Board Pagination Prev 1 ... 38 39 40 41 42 43 44 45 46 47 ... 98 Next
/ 98