4 条题解

  • 2
    @ 2023-7-2 20:09:20

    #include <bits/stdc++.h> using namespace std; int main(){ int x,y; cin>>x>>y; cout<<x<<"+"<<y<<"="<<(x+y)<<endl; cout<<x<<"-"<<y<<"="<<(x-y)<<endl; cout<<x<<""<<y<<"="<<(xy)<<endl; cout<<x<<"/"<<y<<"="<<(x/y)<<"..."<<(x%y)<<endl; return 0; }

    其实这道题非常简单

    • 1
      @ 2023-12-31 11:02:19
      #include <bits/stdc++.h>
      using namespace std;
      int main(){
      	int a,b,c;
      	cin>>a>>b>>c;
      	if(a+b>c && b+c>a && a+c>b){
      		cout<<"yes";
      	}
      	else{
      		cout<<"no";
      	}
      	return 0;
      }
      
      • 1
        @ 2023-9-30 16:47:57

        6

        • 0
          @ 2023-12-31 11:02:11

          #include <bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a+b>c && b+c>a && a+c>b){ cout<<"yes"; } else{ cout<<"no"; } return 0; }

          • 1

          信息

          ID
          4
          时间
          1000ms
          内存
          128MiB
          难度
          7
          标签
          递交数
          23
          已通过
          7
          上传者