#10430: c++ 解答


qqana (小寬)

學校 : 國立科學工業園區實驗高級中學
編號 : 40607
來源 : [218.254.181.115]
最後登入時間 :
2019-10-25 09:40:32
d058. BASIC 的 SGN 函數 -- 板橋高中教學題 | From: [218.161.71.48] | 發表日期 : 2015-11-05 23:01

#include <iostream>

using namespace std;

 

int main()

{

   int w;

   while (cin>>w) {

      cout<<(w>0)-(w<0);

   }

   return 0;

 

}

 
ZeroJudge Forum