JAVA编程题全集(100题及答案) 下载本文

内容发布更新时间 : 2024/5/4 18:25:19星期一 下面是文章的全部内容请认真阅读。

y = 20 * 0.175 + 20 * 0.05 + 20 * 0.03 + (x - 60) * 0.015; } else if(x > 100) {

y = 20 * 0.175 + 40 * 0.08 + 40 * 0.015 + (x - 100) * 0.01; } } }

【程序13】

题目:一个整数,它加上100后是一个完全平方数,再加上168又是一个完全平方数,请问该数是多少? public class lianxi13 {

public static void main(String[] args) { for(int x =1; x<100000; x++) { if(Math.sqrt(x+100) % 1 == 0) { if(Math.sqrt(x+268) % 1 == 0) {

} } } } }

/*按题意循环应该从-100开始(整数包括正整数、负整数、零),这样会多一个满足条件的数-99。

但是我看到大部分人解这道题目时都把题中的“整数”理解成正整数,我也就随大流了。*/ 【程序14】

题目:输入某年某月某日,判断这一天是这一年的第几天? import java.util.*; public class lianxi14 {

public static void main(String[] args) { int year, month, day; int days = 0; int d = 0; int e;

input fymd = new input();

do { e = 0;

year =fymd.input();

month = fymd.input();

day = fymd.input();

if (year < 0 || month < 0 || month > 12 || day < 0 || day > 31) {

e=1 ; }

}while( e==1);

for (int i=1; i

if ((year % 400 == 0) || (year % 4 == 0 && year % 100 != 0)) { days = 29; } else { days = 28; }

break; }

d += days; } } }

class input{

public int input() {

int value = 0;

Scanner s = new Scanner(System.in); value = s.nextInt(); return value; } }

【程序15】

题目:输入三个整数x,y,z,请把这三个数由小到大输出。 import java.util.*; public class lianxi15 {

public static void main(String[] args) { input fnc = new input(); int x=0, y=0, z=0;

x = fnc.input();

y = fnc.input();

z = fnc.input(); if(x > y) { int t = x; x = y; y = t; }

if(x > z) {

int t = x; x = z; z = t; }

if(y > z) { int t = y; y = z; z = t; } } }

class input{

public int input() { int value = 0;

Scanner s = new Scanner(System.in); value = s.nextInt(); return value; } }

【程序16】

题目:输出9*9口诀。

public class lianxi16 {

public static void main(String[] args) { for(int i=1; i<10; i++) { for(int j=1; j<=i; j++) { }

} } }

【程序17】

题目:猴子吃桃问题:猴子第一天摘下若干个桃子,当即吃了一半,还不瘾,又多吃了一个 第二天早上又将剩下的桃子吃掉一半,又多吃了一个。以后每天早上都吃了前一天剩下 的一半零一个。到第10天早上想再吃时,见只剩下一个桃子了。求第一天共摘了多少。 public class lianxi17 {

public static void main(String[] args) { int x = 1;

for(int i=2; i<=10; i++) { x = (x+1)*2; }