Views 17304 Votes 0 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++] 기초강좌 #04(클래스)

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

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

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

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

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

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

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

    Date2013.04.23 CategoryDevelop Byhooni Views9566
    Read More
  9. [c++] 문자열 뒤집기(문자열 거꾸로 출력)

    Date2013.04.23 CategoryDevelop Byhooni Views17304
    Read More
  10. [c++] 바탕화면 테두리에 자석처럼 붙는 스냅효과..

    Date2013.04.23 CategoryDevelop Byhooni Views8921
    Read More
  11. [c++] 소켓 프로그래밍 관련 링크.. (퍼올려고 올린거)

    Date2013.04.23 CategoryDevelop Byhooni Views7057
    Read More
  12. [c++] 쓰레드(Thread) 객체의 사용

    Date2013.04.23 CategoryDevelop Byhooni Views8600
    Read More
  13. [c++] 압축프로그램(Lite Zip) 샘플

    Date2013.04.23 CategoryDevelop Byhooni Views8623
    Read More
  14. [c++] 웹폼(webform)전송과 http 파일 업로드 샘플

    Date2013.04.23 CategoryDevelop Byhooni Views33102
    Read More
  15. [c++] 윈도우 API 정복 예제

    Date2013.04.23 CategoryDevelop Byhooni Views7632
    Read More
  16. [c++] 윈도우 프로세스뷰어 분석.. ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views8854
    Read More
Board Pagination Prev 1 ... 7 8 9 10 11 ... 53 Next
/ 53