Contents

조회 수 7046 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
연습과제 1>>
main함수의 소스가 수행될 수 있는 String클래스를 디자인해보자.

[main함수]
int main()
{
    String str1 = "Good";
    String str2 = "morning";
    String str3;    

    str1 = str3 = str2;
    str1 = "good ";        
    String str4 = str1 + str2;
    
    cout << str1 <<endl;
    cout << str2 <<endl;
    cout << str3 <<endl;
    cout << str4 <<endl;
    
    str1 += str2;
    if(str1 == str4)
        cout << "문자열이 일치합니다.
";
    else
        cout << "문자열이 일치하지 않습니다.
";
    
    String str5;
    cout << "문자열 입력 : ";
    cin >> str5;
    
    cout << "입력 문자열은 [" << str5 << "] 입니다.
";
    
    String str6 = "Hello";
    
    if( !str6.isEmpty() ) //문자열이 비어있는지 검사하는 함수
    {        
        str6.Empty(); //문자열 비우는 함수
        cout << "str6 문자열 초기화 수행
";        
    }
    
    cout << "str6 문자열 출력 : " << str6 << endl;    
    str6 = "Happy Birthday";
    
    str6.Replace(); //문자열 역순저장 함수
    cout << "역순 문자열은 " << str6 << " 입니다.
";
    
    int len = str6.Lenth(); //문자열의 길이를 구하는 함수
    cout << "문자열의 길이는 " << len << " 입니다.
";
    
    return 0;
}


?

  1. [php] 초간단 웹 카운터..

    Date2003.04.23 CategoryDevelop Byhooni Views7063
    Read More
  2. [js] 툴팁.. 좋은거.. (tooltip)

    Date2013.04.23 CategoryDevelop Byhooni Views7059
    Read More
  3. [c++] mfc 기반 멀티수납(wall)시스템 소스와 실행파일

    Date2013.04.23 CategoryDevelop Byhooni Views7056
    Read More
  4. [c] 텍스트 파일(로그)을 정해진 라인 단위로 쪼개주는 코드

    Date2013.04.23 CategoryDevelop Byhooni Views7050
    Read More
  5. [C++] 18일차 과제물, String 클래스 디자인 【 C++ 문제 】

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

    Date2013.04.23 CategoryDevelop Byhooni Views7031
    Read More
  7. [c] openssl 샘플코드.. 어려움 ㅠㅠ

    Date2013.04.23 CategoryDevelop Byhooni Views7027
    Read More
  8. [c] 단어 입력/수정 프로그램 소스

    Date2003.04.23 CategoryDevelop Byhooni Views7026
    Read More
  9. [c] 정사각배열의 서브 배열의 최대 값 구하기

    Date2003.04.23 CategoryDevelop Byhooni Views7022
    Read More
  10. [c] 내가 만든 암호화 프로그램.. 좋아^^

    Date2013.04.23 CategoryDevelop Byhooni Views7021
    Read More
  11. [js] 큐 형식으로 배열사용.. ㅋㅋ

    Date2013.04.23 CategoryDevelop Byhooni Views7019
    Read More
  12. [c] 패스워드 암호화/사용자 정보 보기

    Date2003.04.23 CategoryDevelop Byhooni Views7014
    Read More
Board Pagination Prev 1 ... 41 42 43 44 45 46 47 48 49 50 ... 71 Next
/ 71