ログイン
新規登録
AtsuoCoder Petrozavodsk Contest 001
読込中…
Home
Tasks
Clar
Submissions
Standings
提出 dc83c09a-d4d3-49c3-aaba-4f7faef2acc9
コード
#include <bits/stdc++.h> using namespace std; int main() { int A,B,C,T,n,m,h; cin >> A >> B >> C >> T; n=1/A; m=1/B; h=C/T; cout << n < h << endl; cout << m < h << endl; }
結果
問題
点数
言語
結果
実行時間
メモリ
B - Dash
0
C++
WJ
0 ms
0 KiB
コンパイルエラー
Main.cpp: In function 'int main()': Main.cpp:10:19: error: invalid operands of types 'int' and '<unresolved overloaded function type>' to binary 'operator<<' 10 | cout << n < h << endl; | ~~^~~~~~~ Main.cpp:11:19: error: invalid operands of types 'int' and '<unresolved overloaded function type>' to binary 'operator<<' 11 | cout << m < h << endl; | ~~^~~~~~~