CodeFoeces-378A

题目

原题链接:A. Playing with Dice

题意

a和b各写一个数字(1~6),更接近筛子数字的赢,若一样则为平局,问a的胜利次数,平局次数和b的胜利次数。

代码

#include
using namespace std;
int main() {
    int a,b;
    scanf("%d%d",&a,&b);
    int f=0,d=0,s=0;
    for(int i=1; i<=6; i++) {
        if(abs(i-a)>abs(i-b)) s++;
        else if(abs(i-a)

你可能感兴趣的:(CodeFoeces-378A)