|
|
back to boardIf WA 25 String comparison: s1="aa"; s2="aaa"; s1<s2==true; s2>s1==false; Re: If WA 25 Posted by hatred 7 Aug 2011 20:58 omg s2>s1!=s1<s2? Re: If WA 25 Posted by Ignas 9 Aug 2011 00:39 Don't know about you, but for me it's like this :) "aa" > "aaa" FALSE "aaa" < "aa" FALSE "aa" < "aaa" TRUE "aaa" > "aa" TRUE Standart C++ operation. Maybe you're using other language and you have this problem? Edited by author 09.08.2011 00:39 |
|
|