首页 > 代码库 > 第1题:A+B+C问题&第2题:整除问题&第3题:判断质数
第1题:A+B+C问题&第2题:整除问题&第3题:判断质数
——前三题没理由单独写,放一块吧
————第1题:A+B+C
<strong><span style="font-size:18px;"><span style="color:#ff0000;">#include <stdio.h></span></span></strong>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); printf("%d",a+b+c);}<strong><span style="font-size:18px;"><span style="color:#ff0000;"></span></span></strong>
————第2题:整除问题
#include "stdio.h" int main() { int a,b; scanf("%d%d",&a,&b); if(a % b == 0) printf("YES"); else printf("NO"); }
#include "stdio.h" int main() { int a,i; scanf("%d",&a); for(i = 2;i < a;i++) { if(a % i == 0) { printf("NO"); return 0; } else continue; } if(i == a) printf("YES"); }
第1题:A+B+C问题&第2题:整除问题&第3题:判断质数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。