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

考试题1

时间:2017-09-10 19:48:59      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:java   highlight   eth   method   else   oid   logs   考试   int   

编写一个方法method(),判断一个数能否同时被3和5整除

先定义一个变量i

public class test{
    public static void main(String[] args){
        int i=15;

然后用 if else进行判断

public class test{
    public static void main(String[] args){
        int i=15;
        if(i%3==0 && i%5==0){
            System.out.println("i"+能被整除);
        }else{
            System.out.println("i"+不能被整除);
        }
    }
}

  

考试题1

标签:java   highlight   eth   method   else   oid   logs   考试   int   

原文地址:http://www.cnblogs.com/zyn0216/p/7501888.html

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