判断满足条件的三位数
Posted 2018jason
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断满足条件的三位数相关的知识,希望对你有一定的参考价值。
https://pintia.cn/problem-sets/12/problems/351
1 int search(int n) 2 { 3 int count = 0; 4 int num_sqrt; //平方根的整数部分 5 int single, ten, hundred; 6 for (int i = 101; i <= n; i++) 7 { 8 num_sqrt = (int)sqrt(i); 9 if (i == num_sqrt * num_sqrt) 10 { 11 single = i % 10; 12 ten = i % 100 / 10; 13 hundred = i / 100; 14 if (single == ten || single == hundred || ten == hundred) 15 { 16 count++; 17 } 18 } 19 } 20 21 return count; 22 }
以上是关于判断满足条件的三位数的主要内容,如果未能解决你的问题,请参考以下文章
有1234个数字,能组成多少个互不相同 且无重复数字的三位数?都是多少?
python 有四个数字:1234,能组成多少个互不相同且无重复数字的三位数?各是多少? 程序分析:可填在百位十位个位的数字都是1234。组成所有的排列后再去 掉不满足条件的排列。(用