问题:
一辆卡车撞人逃跑,一个人说前两位相同,一个人说后两位相同,一个数学家说是一个数的平方,这个四位数的车牌号是多少。
#include <stdio.h> #include <stdlib.h> #include<math.h> /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main(int argc, char *argv[]) { int a, b; for(a=1; a<=9; a++) for(b=0; b<=9; b++) { int i; for(i=31; i<100; i++) if(sqrt(1100*a+11*b) == i) printf("%d\n", 1100*a+11*b); } return 0; } //7744
原文:http://blog.csdn.net/orangeisnotapple/article/details/44600343