http://www.programmer-club.com.tw/ShowSameTitleN/c/42566.html
求職前看過的討論串
不過時過境遷,環境大不同
台灣公司其實
其實最近很多外商在台灣設立研發中心,除了AI之外,也開了部分電腦視覺相關的缺
而台灣公司從htc VR部門到一些ic設計公司都有缺,雖然相較於軟韌可能少上很多,不過機會仍然在
等我資深一點再來寫的詳細點
http://www.programmer-club.com.tw/ShowSameTitleN/c/42566.html
求職前看過的討論串
不過時過境遷,環境大不同
台灣公司其實
其實最近很多外商在台灣設立研發中心,除了AI之外,也開了部分電腦視覺相關的缺
而台灣公司從htc VR部門到一些ic設計公司都有缺,雖然相較於軟韌可能少上很多,不過機會仍然在
等我資深一點再來寫的詳細點
#include <iostream>
using namespace std;
int main() {
int s;
while(cin >> s){
if(s%4==0 && s%100!=0)
cout << "閏年"<< endl;
else if(s%400==0)
cout << "閏年"<< endl;
else
cout << "平年"<< endl;
}
return 0;
}
#include <iostream> using namespace std; int main() { string s; while(cin >> s){ if(s%4==0 && s%100!=0) cout << "閏年"<< endl; else if(s%400==0) cout << "閏年"<< endl; else cout << "平年"<< endl; } return 0; }
/2761251/code_2761251.cpp: In function ‘int main()’: /2761251/code_2761251.cpp:7:5: error: no match for ‘operator%’ (operand types are ‘std::string {aka std::basic_string}’ and ‘int’) if(s%4==0 && s%100!=0) ^ /2761251/code_2761251.cpp:7:15: error: no match for ‘operator%’ (operand types are ‘std::string {aka std::basic_string }’ and ‘int’) if(s%4==0 && s%100!=0) ^ /2761251/code_2761251.cpp:9:10: error: no match for ‘operator%’ (operand types are ‘std::string {aka std::basic_string }’ and ‘int’) else if(s%400==0) ^
運算子
|
功能
|
範例
|
+
|
加
|
a+b
|
-
|
減
|
a-b
|
*
|
乘
|
a*b
|
/
|
除
|
a/b
|
%
|
取餘數
|
a%b
|