delete pics to save space

This commit is contained in:
2023-08-03 09:22:52 +08:00
commit de60cd6ed4
1334 changed files with 66221 additions and 0 deletions

17
1.1008.cpp Normal file
View File

@ -0,0 +1,17 @@
#include<cstdio>
#include<algorithm>
using namespace std;
int res[]={1,2,3,4,5,6,7,8,9};
int main()
{
int a,b,c;
do
{
a=res[0]*100+res[1]*10+res[2];
b=res[3]*100+res[4]*10+res[5];
c=res[6]*100+res[7]*10+res[8];
if(a*6==b*3&&b*3==c*2) printf("%d %d %d\n",a,b,c);
}
while(next_permutation(res,res+9));
return 0;
}