题目:判断一个整数能被几个9整除
1 package com.hanqi.lianxi; 2 3 import java.io.*; 4 5 public class Test1 { 6 7 //判断能否被9整除 8 static void decide(int m){ 9 10 if(m % 9== 0) 11 System.out.println ("你输入的数字能够被9整除!"); 12 else 13 System.out.println ("你输入的数字不能够被9整除!"); 14 } 15 16 public static void main(String[] args) { 17 // TODO 自动生成的方法存根 18 19 int input;//存放输入数据 20 //创建输入字符串的实例 21 BufferedReader strin=new BufferedReader(new InputStreamReader(System.in)); 22 System.out.println("请输入一个的整数:"); 23 String x=null; 24 try{ 25 x=strin.readLine(); 26 }catch(IOException ex){ 27 ex.printStackTrace(); 28 } 29 input=Integer.parseInt(x); 30 Test1.decide(input); 31 32 } 33 34 35 }