题目
原题链接:A. Is your horseshoe on the other hoof?
题意
Valera是一匹马。它需要四只不同颜色的鞋(马蹄铁),给出目前四只鞋的颜色,问要换几只才能让所有的颜色不一样。
代码
#include<bits/stdc++.h>
using namespace std;
int main()
{
int s[4];
for(int i=0; i<4; i++) {
scanf("%d",&s[i]);
}
sort(s,s+4);
int max=0;
for(int i=0;i<3;i++){
if(s[i]==s[i+1]){
max++;
}
}
printf("%d\n",max);
return 0;
}