codeforces 467A-C语言解题报告
Posted DQ_CODING
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codeforces 467A-C语言解题报告相关的知识,希望对你有一定的参考价值。
题目解析
1.输入n个房间,再每一行输入现有的p个人,和一共可以容纳的q人数,如果q-p>=2则计数+1
代码
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
int n=0,p=0,q=0;
int count=0,i;
scanf("%d",&n);
for(i=0;i<n;i++)
{
scanf("%d %d",&p,&q);
if((q-p)>=2)
{
++count;
}
}
printf("%d",count);
getchar();
system("pause");
return 0;
}
以上是关于codeforces 467A-C语言解题报告的主要内容,如果未能解决你的问题,请参考以下文章