#include<iostream> using namespace std; int main(){ long int n; while(cin >> n){ cout << n * ((n > 0) - (n < 0)) << endl; } } 代码如上;不难;AC的,没错。