topcoderのsrm151 DIV2の250点問題の他のヒトの解答をみていたらみつけた。
#include<iostream>
using namespace std;
int main(){
int result = 5;
result <?= 3; // 3
cout << result << endl;
}
条件に合致する場合に代入する演算子。コンパイルしたら警告がでた。
warning: minimum/maximum operators are deprecated
他にはstringはfind,substrというメソッドがあってperlと似たような感じで文字列操作ができるということを知った。