2 条题解

  • 1
    @ 2023-10-24 19:54:53

    #include #include using namespace std; int main() { string n; cin >> n; //如果为负数照常输出 if(n[0] == '-') { cout << n << endl; } //如果为0照常输出 else if(n == "0") cout << n << endl; //如果为不是负数加上负号照常输出 else { cout << "-" << n << endl; } return 0; }

    • 0
      @ 2023-10-26 18:39:50
      using namespace std;
      string a;
      int main(){
      	cin>>a;
      	if(a[0]!='-'){
      		cout<<"-"<<a;
      	return 0;
      	}	
      	cout<<a;
      	return 0;
      }
      代码
      
      • 1

      信息

      ID
      7
      时间
      1000ms
      内存
      128MiB
      难度
      8
      标签
      (无)
      递交数
      64
      已通过
      12
      上传者