С++ #include using namespace std; bool Election(int a,int b,int c) { int t=0,f=0; if(a==true) t++; else f++; if(b==true) t++; else f++; if(c==true) t++; else f++; if(t>f) return TRUE; else return FALSE; } void main() { bool x,y,z; cin>>x,y,z; cout<< Election(x,y,z) <<endl;<br> system("pause"); }