Stwórz program w DEV-C++, który będzie sprawdzał po wprowadzeniu dwóch napisów przez użytkownika czy oba napisy są takie same lub różne.
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <iostream>
#include <string>
using namespace std;
int main(){
string n,n1;
cout << "Wprowadz ciag znakow (bez spacji) => "; cin >> n;
cout << "Wprowadz jeszcze jeden ciag znakow (bez spacji) => ";cin >> n1;
if (n == n1)
cout << "Ciagi sa rowne !";
else
cout << "Ciagi sa rozne !";
getchar();
getchar();
return 0;
}
Na stringach mozemy robić dowolne operacje arytmetyczne także rozwiązanie problemu następuje przez zwykłego IF-a
#include<iostream>
using namespace std;
int main(){
string a, b;
cout << "Podaj I napis..." << endl;
cin >> a;
cout << "Podaj II napis..." << endl;
cin >> b;
if(a == b){
cout << "Napisy są takie same" << endl;
}
else{
cout << "Napisy sa rozne" << endl;
}
}