4.20

#include<stdio.h>
void main(){
int i,j,k,temp;
for(i=0;i<=9;i++)
for(j=0;j<=9;j++)
{
if(i!=j)
{k=1000*i+100*i+10*j+j;
for(temp=31;temp<=99;temp++)
if(temp*temp==k)
printf("车牌号为%d",k);
}
}
}

posted @ 2023-04-20 15:55  孙锺鸣  阅读(8)  评论(0)    收藏  举报