Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <exception>
- using namespace std;
- int main()
- {
- string cognome = "";
- // cout << "Inserire un cognome: ";
- // cin >> cognome;
- string copia = cognome;
- if (copia == cognome)
- {
- cout << "Le due stringhe sono uguali\n";
- }
- string copia2 = "FERRARI";
- if (copia2 == cognome)
- {
- cout << "Le due stringhe sono ancora uguali\n";
- }
- string s1="mare", s2="Mare";
- if (s1<s2)
- {
- cout << "s1 minore di s2\n";
- }
- else
- {
- if (s1>s2)
- {
- cout << "s1 maggiore di s2\n";
- }
- else
- {
- cout << "s1 e a2 sono uguali\n";
- }
- }
- string s3 = s1 + " e " + s2;
- cout << s3 << endl;
- cout << s2[0] << s2[2] << endl;
- cout << s2.length() << endl;
- cout << s2[s2.length()-1] << endl;;
- s2[0]='m';
- cout << s2 << endl;
- char c1 = ' ';
- char c2 = c1;
- c2 = 'Z';
- //da stringa a numeri
- string s="457";
- int n = stoi(s);
- s = "-678.79";
- double x = stod(s);
- //da numeri a stringa
- s = to_string(n);
- s = to_string(x);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement