通过次数
0
提交次数
1~100之间所有既能被2整除,又能被3整除的整数
no input needed
6 12 18 24 30 36 42 48 54 60 66 72 78 84 90 96
#include<bits/stdc++.h> using namespace std; int a,b; int main() { for(int i=6;i<=96;i+=6) cout<<i<<endl; return 0; }