#include <iostream> using namespace std; int tab1[18], tab2[18]; int wynik1,wynik2; int temp1[10],temp2[10]; int n=10; int i=0; int m=0,j=0; int main() { for(int i=0;i<18;i++) { cin>>tab1[i]; wynik1+=tab1[i]; } for(int i=0;i<18;i++) { cin>>tab2[i]; wynik2+=tab2[i]; } cout<<endl; if(wynik1>wynik2) { cout<<"Algosia"; } else if(wynik1<wynik2) { cout<<"Bajtek"; } else if(wynik1==wynik2) { while(temp1[i]==temp2[i]) { for(int i=0;i<18;i++) { if(tab1[i]==n) { temp1[j]++; } if(tab2[i]==n) { temp2[j]++; } } n--; j++; i++; } while(m!=18) { if(temp1[m]>temp2[m]) { cout<<"Algosia"; break; } else if(temp1[m]<temp2[m]) { cout<<"Bajtek"; break; } else if(temp1[m]==temp2[m] && m<18) { m++; } } if(m==18 && temp1[m]==temp2[m]) { cout<<"remis"; } } }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | #include <iostream> using namespace std; int tab1[18], tab2[18]; int wynik1,wynik2; int temp1[10],temp2[10]; int n=10; int i=0; int m=0,j=0; int main() { for(int i=0;i<18;i++) { cin>>tab1[i]; wynik1+=tab1[i]; } for(int i=0;i<18;i++) { cin>>tab2[i]; wynik2+=tab2[i]; } cout<<endl; if(wynik1>wynik2) { cout<<"Algosia"; } else if(wynik1<wynik2) { cout<<"Bajtek"; } else if(wynik1==wynik2) { while(temp1[i]==temp2[i]) { for(int i=0;i<18;i++) { if(tab1[i]==n) { temp1[j]++; } if(tab2[i]==n) { temp2[j]++; } } n--; j++; i++; } while(m!=18) { if(temp1[m]>temp2[m]) { cout<<"Algosia"; break; } else if(temp1[m]<temp2[m]) { cout<<"Bajtek"; break; } else if(temp1[m]==temp2[m] && m<18) { m++; } } if(m==18 && temp1[m]==temp2[m]) { cout<<"remis"; } } } |