2010年7月30日 星期五

高中 d058: BASIC 的 SGN 函數



想看題目請點我

#include <iostream>
using namespace std;

int main() {
     int n ;
     while(cin >> n )
     {
          cout << -1 + (n >= 0) + (n > 0) << endl ;
     }
     return 0;
}