37.整除——C语言初学者百题大战之十六

#include<stdio.h>
int main()
{
    int a,b,c;
    scanf("%d%d%d",&a,&b,&c);
    if(a%b==0&&a%c==0)
    printf("Yes\n");
    else
    printf("No\n");
    return 0;
}

猜你喜欢

转载自www.cnblogs.com/Estwind/p/9784662.html
今日推荐