プログラマー-ソウルで金相公を探す
1252 ワード
#include <string>
#include <vector>
using namespace std;
string solution(vector<string> seoul) {
string answer = "";
answer +="김서방은 ";
for(int i=0; i<seoul.size(); i++)
{
if(seoul[i]=="Kim")
{
answer +=to_string(i);
}
}
answer +="에 있다";
return answer;
}
#include #include
using namespace std;
string solution(vector seoul) {
string answer = "";
for(int i=0; i
if(seoul[i]=="Kim")
{
回答+="金婿在"+to string(i)+";
}
}
return answer;
}
易しい問題どんな形でもできます.stringを組み合わせる場合、+stringを組み合わせることができます
Reference
この問題について(プログラマー-ソウルで金相公を探す), 我々は、より多くの情報をここで見つけました https://velog.io/@imalive77/프로그래머스-서울에서-김서방찾기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol