C ++
 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()関数を使用して文字列の長さを計算します
  • 文字列配列の最初と最後の要素をチェックします。等しい場合はreturn1、そうでない場合はretrun -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

  1. 最初のC++プログラムを書く方法は?

    C ++でプログラミングする方法を学ぶことにしましたが、どこから始めればよいかわかりません。開始方法の概要は次のとおりです。 C++コンパイラを入手する これは、C++でのプログラミングの学習を開始する前に実行したい最初のステップです。すべての主要なOSプラットフォームで利用できる優れた無料のC++コンパイラがあります。プラットフォームに適したものをダウンロードするか、https://www.tutorialspoint.com/compile_cpp_online.phpでtutorialspoint.comのオンラインコンパイラを使用できます。 GCC- GCCはGNUコンパイラチェ

  2. 指定された文字列の最初の2文字と最後の2文字で構成される新しい文字列を形成するPythonプログラム

    特定の文字列の最初の2文字と最後の2文字から作成される新しい文字列を形成する必要がある場合は、カウンターを定義し、インデックスを使用して特定の範囲の要素にアクセスできます。 以下は同じのデモンストレーションです- 例 my_string = "Hi there how are you" my_counter = 0 for i in my_string:    my_counter = my_counter + 1 new_string = my_string[0:2] + my_string [my_counter - 2: my_counter