Есть две строки. Вывести ту которая короче
String a; string b; if (a.length() == b.length()) cout << "строки равны";<br>else if (a.length() < b.length()) cout << a;<br>else cout << b;<br>