执行以下代码,输出结果是( )
string s = "Hello,C++!"; string f = ",!"; int p1 = s.find_first_of(f, 6); cout << p1;
5
6
9
10