6 条题解

  • 1
    @ 2023-6-5 14:56:51

    #include<iostream> #include<iomanip> using namespace std; int main(){ double x,y; cin>>x; if(0<=x&&x<5){ y=-x+2.5; } else if(x<10){ y=2-1.5*(x-3)*(x-3); } else if(x<20){ y=x/2.0-1.5; } cout<<fixed<<setprecision(3)<<y;

    return 0; }

    • 0
      @ 2023-6-20 16:46:48
      #include<bits/stdc++.h>        
      using namespace std;
      int main()
      {
      	double x,y;
      	cin>>x;
      	
      	if(0<=x&&x<5) y=-x+2.5;
      	
      	else if(5<=x&&x<10) y=2-1.5*(x-3)*(x-3);
      	else if(10<=x&&x<20) y=x/2.0-1.5;
      	printf("%.3lf",y);
      	return 0;
       }
      
      • 0
        @ 2023-6-2 11:04:16

        结婚两周年,陆见深突然提出离婚。南溪捏紧了手中的孕检单问他:“非离不可吗?若是我说,我们有了宝宝呢?。他眉眼冷淡:“南溪,我一向有做措施,就算真有意外,我也不会留下这个隐患。”他大婚那日,宝宝早产,车祸染了一地的红,南溪躺在血泊里,拼命护着肚子:“求求你们,救孩子!”后来听说,陆见深抛下新娘,抱着前妻冷透的身子,守了七天七夜也不愿下葬。陆见深疯了,直到那日,她牵着一对可爱的宝宝和他擦身而过........

        • 0
          @ 2023-5-30 13:47:21

          #include<bits/stdc++.h> using namespace std; int main() { double x,y; cin>>x; if (5>x && x>=0){ y=-x+2.5; } else if(10>x && x>=5){ y=2-1.5*(x-3)*(x-3); } else{ y=x/2-1.5; }

          cout<<fixed<<setprecision(3)<<y; return 0; }

          信我!

          • 0
            @ 2023-5-11 17:16:28

            #include<iostream> #include<iomanip> using namespace std; int main() { double x,y; cin>>x; if(x>=0&&x<5) { y=2.5-x; } else if(x>=5&&x<10) { y=2-1.5*(x-3)*(x-3); } else if(x>=10&&x<20) { y=x/2.0-1.5; } cout<<fixed<<setprecision(3)<<y; return 0; }

            • -2
              @ 2023-5-16 17:18:58

              #include<bits/stdc++.h> using namespace std; int main() { double x,y; cin>>x;

              if(0<=x&&x<5) y=-x+2.5;
              
              else if(5<=x&&x<10) y=2-1.5*(x-3)*(x-3);
              else if(10<=x&&x<20) y=x/2.0-1.5;
              printf("%.3lf",y);
              return 0;
              

              }

              • 1

              信息

              ID
              609
              时间
              1000ms
              内存
              256MiB
              难度
              5
              标签
              (无)
              递交数
              355
              已通过
              143
              上传者