猜数字游戏,水仙花数

猜数字游戏
import java.util.Random;
import java.util.Scanner;
    class Demo{
        public static void main(String[] args){
            Scanner input = new Scanner(System.in);
            Random r = new Random();
            System.out.println("-------------- 欢迎访问猜数字游戏 -----------");
            System.out.println("-------------- 请输入一个0-5的数字 -----------");
            //接收用户输入的内容
            int a = input.nextInt();
            //随机产生一个0-5的数字
            int b = r.nextInt(6);
            System.out.print("系统产生的数字为:");
            System.out.print(b);
            System.out.println("结果为:");
            System.out.println(a==b);

        }
    }
水仙花数

 
 
  1. public class Demo {  
  2.     public static void main(String[] args) {  
  3.     <span style="white-space:pre">  </span>for(int i=100;i<1000;i++){  
  4.         //判断i是否为水仙花数 , 如果是则打印  
  5.         <span style="white-space:pre">  </span>int a = i/100;//百位数  
  6.             int b = i%100/10;//十位数  
  7.             int c = i%10;//个位数  
  8.             int sum = a*a*a+b*b*b+c*c*c;  
  9.             if(sum == i){  
  10.             System.out.println("找到了一个水仙花数:"+i);  
  11.             }  
  12.           
  13.         }  
  14.     }  
  15. }  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值