中国剩余定理:
代码:
#include#include using namespace std;int main(){ int a,b,c; while(scanf("%d %d %d",&a,&b,&c)!=EOF){ int s=70*a+21*b+15*c; s%=105; if(s<=100 && s>=10){ printf("%d\n",s); }else{ printf("No anwser\n"); } } return 0;}
本文共 383 字,大约阅读时间需要 1 分钟。
中国剩余定理:
代码:
#include#include using namespace std;int main(){ int a,b,c; while(scanf("%d %d %d",&a,&b,&c)!=EOF){ int s=70*a+21*b+15*c; s%=105; if(s<=100 && s>=10){ printf("%d\n",s); }else{ printf("No anwser\n"); } } return 0;}
转载于:https://www.cnblogs.com/TWS-YIFEI/p/5862254.html