Answers for "c++ check two strings are equal"

C++
5

how to compare strings in c++

// comparing apples with apples
#include <iostream>
#include <string>

int main ()
{
  std::string str1 ("green apple");
  std::string str2 ("red apple");

  if (str1.compare(str2) != 0)
    std::cout << str1 << " is not " << str2 << '\n';

  if (str1.compare(6,5,"apple") == 0)
    std::cout << "still, " << str1 << " is an apple\n";

  if (str2.compare(str2.size()-5,5,"apple") == 0)
    std::cout << "and " << str2 << " is also an apple\n";

  if (str1.compare(6,5,str2,4,5) == 0)
    std::cout << "therefore, both are apples\n";

  return 0;
}
Posted by: Guest on July-14-2020
0

c++ check two strings are equal

#include<iostream>
#include<ctype.h>
using namespace std;
int main() {
	string s1, s2; cin >> s1 >> s2;
	int a = 0;
	if(s1.length() != s2.length()) {
		cout << "NO";
		return 0;
	}
	for(int i = 0; i < s1.length(); i++) 
		if(s1[i] == s2[i]) a++;
	if(a == s1.length()) cout << "YES";
	else cout << "NO";
	return 0;
}
Posted by: Guest on October-28-2021

Code answers related to "c++ check two strings are equal"

Browse Popular Code Answers by Language