输入两个整数a,b,从n个整数找出能够被a整除,或被b整除,但不能同时被a,b整除数
标签:ace 时间 http 内存 text sam content std bsp
输入两个整数a,b,从n个整数找出能够被a整除,或被b整除,但不能同时被a,b整除数
第1行输入两个整数a,b
第2行输入1个n(0<n<10000)
第3行是n个整数.
输出能够被a整除,或被b整除,但不能同时被a,b整除的数,用空格隔开
2 3
3
15 16 24
15 16
#include<cstdio> #include<iostream> #include<algorithm> using namespace std ; int a, b ; int n ; int num ; int main(){ cin>>a>>b ; cin>>n ; while(n--){ cin>>num ; if(!(num%a==0&&num%b==0) && (num%a==0||num%b==0)){ cout<<num <<" " ; } } return 0 ; }
标签:ace 时间 http 内存 text sam content std bsp
原文地址:https://www.cnblogs.com/yi-ye-zhi-qiu/p/8901836.html