7 条题解

  • 1
    @ 2023-12-10 16:00:15
    #include<bits/stdc++.h>
    using namespace std;
    int t,b;
    void uss(){
        if(t==1&&b==2) cout<<"win";
        else if(t==2&&b==3) cout<<"win";
        else if(t==3&&b==1) cout<<"win";
        else if(t==b) cout<<"tie";
        else cout<<"lose";
    }
    int main(){
        cin>>t>>b;
        uss();
        return 0;
    }
    
    • 0
      @ 2023-11-4 8:47:32
      #include<bits/stdc++.h>
      using namespace std;
      int main()
      {
      	int a,b;
      	scanf("%d%d",&a,&b);
      	if(a==1&&b==2)printf("win");
      	else if(a==2&&b==3)printf("win");
      	else if(a==3&&b==1)printf("win");
      	else if(a==b)printf("tie");
      	else printf("lose");
      	return 0;
      }
      
      • 0
        @ 2023-3-17 7:21:34

        #include<bits/stdc++.h> using namespace std; int main() { int a,b; scanf("%d%d",&a,&b); if(a1&&b2)printf("win"); else if(a2&&b3)printf("win"); else if(a3&&b1)printf("win"); else if(a==b)printf("tie"); else printf("lose"); return 0; }

        • 0
          @ 2022-12-3 15:25:36
          #include<stdio.h>
           
          int main(){
          	int a,b;
          	scanf("%d%d",&a,&b);
          	if(a==1&&b==2)printf("win");
          	else if(a==2&&b==3)printf("win");
          	else if(a==3&&b==1)printf("win");
          	else if(a==b)printf("tie");
          	else printf("lose");
          	return 0;
          }
          
          • -1
            @ 2023-11-28 20:06:12
            #include<bits/stdc++.h>
            using namespace std;
            int main(){
            	int a,b;
            	cin>>a>>b;
            	switch((a-b+3)%3){
            		case 1:
            			cout<<"lose";
            			break;
            		case 2:
            			cout<<"win";
            			break;
            		default:
            			cout<<"tie";
            	}
            	return 0;
            }
            
            • -1
              @ 2023-11-4 9:39:25
              #include<bits/stdc++.h>
              using namespace std;
              int main(){
              	int T,K;
              	cin>>T>>K;
              	if((T==1&&K==2)||(T==2 && K==3)||(T==3 && K==1))
              	cout<<"win";
              	else if(T==K)
              	cout<<"tie";
              	else{
              	cout<<"lose";
              	}
              	return 0;	
              }
              
              • -4
                @ 2023-11-4 8:58:29
                #include<bits/stdc++.h>
                using namespace std;
                int main()
                {
                	int a,b;
                	scanf("%d%d",&a,&b);
                	if(a==1&&b==2)printf("win");
                	else if(a==2&&b==3)printf("win");
                	else if(a==3&&b==1)printf("win");
                	else if(a==b)printf("tie");
                	else printf("lose");
                	return 0;
                }
                
                • 1

                信息

                ID
                43
                时间
                1000ms
                内存
                16MiB
                难度
                3
                标签
                递交数
                106
                已通过
                60
                上传者