码迷,mamicode.com
首页 > 其他好文 > 详细

从键盘输入一个整数n(1<n<=9),要用0至n之间不同的三个数构成一个三位数,编写程序统计这样的数共有几个。

时间:2019-06-17 17:26:19      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:oid   can   inf   class   sys   public   png   span   不同   

技术图片

 

代码:

 1 import java.util.*;
 2 public class Main {
 3     public static void main (String [] args) {
 4         Scanner cin=new Scanner(System.in);
 5         int n=cin.nextInt();
 6         int num=0;
 7         for(int b=1;b<=n;b++) {
 8             for(int s=0;s<=n;s++) {
 9                 for(int g=0;g<=n;g++) {
10                     if(b!=s&&b!=g&&s!=g) {
11                         num++;
12                     }
13                 }
14             }
15         }
16         System.out.println(num);
17     }
18 }

 

从键盘输入一个整数n(1<n<=9),要用0至n之间不同的三个数构成一个三位数,编写程序统计这样的数共有几个。

标签:oid   can   inf   class   sys   public   png   span   不同   

原文地址:https://www.cnblogs.com/fandehui/p/11040698.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!