2611: 小T的奥利奥[if 判断条件当没有明明带的奥利奥多时【if (t<=m)】

include <bits/stdc++.h>

using namespace std;
long long t, m;
int main( )
{
cin >> t >> m;
if (t<=m)
{
cout << (m-t)/2+1;
}
else
{
cout << 0;
}
return 0;
}
反思:错误:if (t<m)
[if 判断条件当没有明明带的奥利奥多时【if (t<=m)】

posted @ 2024-11-22 13:28  浩瀚宇宙星晨  阅读(5)  评论(0编辑  收藏  举报