ACM入门级练习题
题目
This problem is also a A + B problem,but it has a little difference,you should determine does (a+b) could be divided with 86.For example ,if (A+B)=98,you should output no for result.
Time limit | Memory limit | OS | Source |
---|---|---|---|
1000 ms | 32768 kB | Windows | HDU 2007-6 Programming Contest |
Input
Each line will contain two integers A and B. Process to end of file.
Output
For each case, if(A+B)%86=0,output yes in one line,else output no in one line.
Example
Input | Output |
---|---|
1 1 | no |
8600 8600 | yes |
问题链接: HDU - 2101
问题描述
输入两个数据,求它们的和,并判断和能不能被86整除,如果能就输出yes,不能则输出no。
问题分析
首先让用户输入两个数据(a、b),若它们的和除以86后余数((a+b)%),如果余数为0则输出yes,若余数不为0则输出no,加上while循环以重复程序。
AC通过代码如下
#include<iostream>
using namespace std;
int main()
{ int a, b;
while (cin >> a >> b)
{
if ((a + b) % 86 == 0)
cout << "yes" << endl;
else cout << "no" << endl;
}
return 0;
}
非常简单就不多说了