3 条题解

  • 0
    @ 2023-7-23 22:03:24

    #include <bits/stdc++.h> using namespace std; int main() { double x,y; cin>>x; if(x>0){ y=x+1; }else if(x<0){ y=x-1; }else{ y=0; } cout<<y; return 0; }

    • 0
      @ 2022-11-18 8:21:25
      #include<bits/stdc++.h>
      int main(){
      int x,y;
      scanf("%d",&x);
      if(x<=30000&&x>0){
      y=x+1;
      }
      if(x==0){
      y=0;
      }
      if(x>=-30000&&x<0){
      y=x-1;
      }
      printf("%d",y);
      }
      
      • -1
        @ 2023-11-26 14:36:33
        #include<bits/stdc++.h>
        using namespace std;
        int main(){
        	int x;
        	cin>>x;
        	cout<<x+(x>0)-(x<0);
        	return 0;
        }
        
        • 1

        【入门】编程求解数学中的分段函数

        信息

        ID
        32
        时间
        1000ms
        内存
        16MiB
        难度
        2
        标签
        递交数
        100
        已通过
        64
        上传者