Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

문자열의 첫 번째 문자와 마지막 문자가 같은지 확인하는 C++ 프로그램

<시간/>

문자열 입력으로 주어지고 주어진 문자열의 처음과 마지막 문자가 같은지 여부를 확인하는 작업입니다.

예시

Input-: study
Output-: not equal
   As the starting character is ‘s’ and the end character of a string is ‘y’
Input-: nitin
Output-: yes it have first and last equal characters
   As the starting character is ‘n’ and the end character of a string is ‘n’

아래에 사용된 접근 방식은 다음과 같습니다. -

  • 문자열을 입력하고 문자열 배열에 저장합니다.
  • length() 함수를 사용하여 문자열 길이 계산
  • 문자열 배열의 첫 번째 요소와 마지막 요소가 같으면 1을 반환하고 그렇지 않으면 -1을 반환
  • 결과 출력 인쇄

알고리즘

Start
Step 1-> declare function to check if first and last charcters are equal or not
   int check(string str)
   set int len = str.length()
      IF (len < 2)
         return -1
      End
      If (str[0] == str[len - 1])
         return 1
      End
      Else
         return 0
      End
Step 2->Int main()
   declare string str = "tutorialsPoint"
   set int temp = check(str)
   If (temp == -1)
      Print “enter valid input"
   End
   Else if (temp == 1)
      Print "yes it have first and last equal characters"
   End
   Else
      Print "Not equal”
Stop

예시

#include<iostream>
using namespace std;
//function to check if first and last charcters are equal or not
int check(string str) {
   int len = str.length();
   if (len < 2)
      return -1;
   if (str[0] == str[len - 1])
      return 1;
   else
      return 0;
}
int main() {
   string str = "tutorialsPoint";
   int temp = check(str);
   if (temp == -1)
      cout<<"enter valid input";
   else if (temp == 1)
      cout<<"yes it have first and last equal characters";
   else
      cout<<"Not equal";
}

출력

위의 코드를 실행하면 다음 출력이 생성됩니다.

yes it have first and last equal characters