You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
194 B

#include<iostream>
using namespace std;
int main()
{
for(int i=0;i<=9;i++)
{
if((i*10+3)*6528==(30+i)*8256)
{
printf("%8d\n",i);
printf("½á¹û=%d",((30+i)*8256));
}
}
return 0;
}