#include<iostream>
using namespace std;
int main()
{
int n, i, p;
int y = 0;
cin >> n;
for (int x = 1; x <= n; x++)
{
cin >> p >> i;
if (i >= p + 2)
y++;
}
cout << y << endl;
return 0;
}
房间人数比减已有人数
多两个及可加一
#include<iostream>
using namespace std;
int main()
{
int n, i, p;
int y = 0;
cin >> n;
for (int x = 1; x <= n; x++)
{
cin >> p >> i;
if (i >= p + 2)
y++;
}
cout << y << endl;
return 0;
}
房间人数比减已有人数
多两个及可加一
本文标题:acm1.2
本文链接:https://www.haomeiwen.com/subject/otnwcqtx.html
网友评论