Contents

조회 수 7055 댓글 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;
}


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
1041 Develop [ios] 최상위 ViewController 가져오기 hooni 2015.10.12 1189
1040 Develop [ios] FlckrFeed Example App (Swift) file hooni 2016.11.27 1189
1039 Develop [ios] UIView 계층구조 hooni 2015.01.03 1207
1038 Develop [maven] Mac OS에 메이븐(maven) 설치하기 file hooni 2015.01.21 1210
1037 Develop GPL, AGPL, MPL,.. 한눈에 보는 오픈소스SW 라이선스 file hooni 2014.10.14 1249
1036 Develop [ios] Objective-C Types & Storage Capacity hooni 2015.07.22 1249
1035 PPT [ppt] OCB기술개발팀 OJT 자료 file hooni 2015.11.13 1254
1034 Develop [ios] 코코아 프로그래밍의 네이밍 룰(명명 규칙) hooni 2017.05.11 1265
1033 Develop [js] Click button copy to clipboard hooni 2018.04.05 1274
1032 Develop [coding] Find all anagrams in a string hooni 2017.06.27 1276
1031 Develop [ios] NavigationController 에서 왼쪽(back) 버튼 후킹하기 hooni 2015.10.23 1288
1030 Develop [ios] Facebook SDK 로그인 설명 file hooni 2017.04.19 1290
Board Pagination Prev 1 ... 7 8 9 10 11 12 13 14 15 16 ... 98 Next
/ 98