1.題目:有1、2、3、4個數字,能組成多少個互不相同且無重覆數字的三位數?都是多少? public class TestTN { public static void main(String[] args) { for(int i=1; i<=4; i++){ for(int j=1; j<=4;
1.題目:有1、2、3、4個數字,能組成多少個互不相同且無重覆數字的三位數?都是多少?
public
class
TestTN {
public
static
void
main(String[] args) {
for
(
int
i=
1
; i<=
4
; i++){
for
(
int
j=
1
; j<=
4
; j++){
if
(j == i)
continue
;
for
(
int
k=
1
; k<=
4
; k++){
if
(k == j || k == i)
continue
;
System.out.print(i*
100
+ j*
10
+ k +
","
);
}
}
}
}
}
2.題目:企業發放的獎金根據利潤提成。利潤(I)低於或等於10萬元時,獎金可提10%;利潤高於10萬元,低於20萬元時,低於10萬元的部分按10%提成,高於10萬元的部分,可可提成7.5%;20萬到40萬之間時,高於20萬元的部分,可提成5%;40萬到60萬之間時高於40萬元的部分,可提成3%;60萬到100萬之間時,高於60萬元的部分,可提成1.5%,高於100萬元時,超過100萬元的部分按1%提成,從鍵盤輸入當月利潤I,求應發放獎金總數?
package
test50;
import
java.io.BufferedReader;
import
java.io.InputStreamReader;
/**
* @author VellBibi
*【程式12】 MoneyAward.java
*題目:企業發放的獎金根據利潤提成。
*利潤(I)低於或等於10萬元時,獎金可提10%;
*利潤高於10萬元,低於20萬元時,低於10萬元的部分按10%提成,高於10萬元的部分,可可提成7.5%;
*20萬到40萬之間時,高於20萬元的部分,可提成5%;
*40萬到60萬之間時高於40萬元的部分,可提成3%;
*60萬到100萬之間時,高於60萬元的部分,可提成1.5%,
*高於100萬元時,超過100萬元的部分按1%提成,
*從鍵盤輸入當月利潤I,求應發放獎金總數?
*1.程式分析:請利用數軸來分界,定位。註意定義時需把獎金定義成長整型。
*/
public
class
MoneyAward {
public
static
double
sumMoneyAward(
double
i){
if
(i <=
10
){
return
i *
0.1
;
}
else
if
(i <
20
){
return
((i -
10
) *
0.075
+
1
);
}
else
if
(i <
40
){
return
(i -
20
) *
0.05
;
}
else
if
(i <
60
){
return
(i -
40
) *
0.03
;
}
else
if
(i <
100
){
return
(i -
60
) *
0.015
;
}
else
{
return
(i -
100
) *
0.001
;
}
}
public
static
void
main(String[] args) {
BufferedReader br =
new
BufferedReader(
new
InputStreamReader(System.in));
double
I =
0
;
try
{
System.out.println(
"請輸入當月利潤I:(單位:萬)"
);
I = Integer.parseInt(br.readLine());
}
catch
(Exception e) {
e.printStackTrace();
}
System.out.println(
"獎金總數:"
+ sumMoneyAward(I) +
"萬"
);
}
}
3.題目:一個整數,它加上100後是一個完全平方數,再加上168又是一個完全平方數,請問該數是多少? /**
* @author VellBibi
*【程式13】FindNumber.java
*題目:一個整數,它加上100後是一個完全平方數,再加上168又是一個完全平方數,請問該數是多少?
*1.程式分析:在10萬以內判斷,先將該數加上100後再開方,再將該數加上268後再開方,如果開方後的結果滿足如下條件,即是結果。請看具體分析:
*/
public
class
FindNumber {
public
static
void
main(String[] args) {
for
(
int
i=
1
; i<
100000
; i++){
if
(Math.sqrt(i +
100
) %
1
==
0
&& Math.sqrt(i +
268
) %
1
==
0
){
System.out.println(i);
// break;
}
}
}
}
4.題目:輸入某年某月某日,判斷這一天是這一年的第幾天?
package test50;
import java.io.BufferedReader;
import java.io.InputStreamReader;
/**
* @author VellBibi
*【程式14】 TestDay.java
*題目:輸入某年某月某日,判斷這一天是這一年的第幾天?
*1.程式分析:以3月5日為例,應該先把前兩個月的加起來,然後再加上5天即本年的第幾天,特殊情況,閏年且輸入月份大於3時需考慮多加一天。
*/
public class TestDay {
public static boolean isLeapYear(int y){
if((y%4 == 0 && y%100 != 100) || y%400 == 0)
return true;
else
return false;
}
public static int sumDays(int y, int m, int d){
int[] MonthDays = {31,28,31,30,31,30,31,31,30,31,30,31};
if(isLeapYear(y)) MonthDays[1] = 29;
int ans = 0;
for(int i=0; i<m-1; i++){
ans = ans + MonthDays[i];
}
return ans + d;
}
public static void main(String[] args) {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String in = null;
try {
System.out.println("請輸入年月日,例如:2014-01-01");
in = br.readLine();
} catch (Exception e) {
System.out.println("格式錯誤");
}
int y = Integer.parseInt(in.substring(0, in.indexOf('-')));
int m = Integer.parseInt(in.substring(in.indexOf('-') + 1, in.lastIndexOf('-')));
int d = Integer.parseInt(in.substring(in.lastIndexOf('-') + 1));
System.out.println(sumDays(y, m, d));
}
}
5.題目:輸入三個整數x,y,z,請把這三個數由小到大輸出。
package test50;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
/**
* @author VellBibi
* 題目:輸入三個整數x,y,z,請把這三個數由小到大輸出。
* 1.程式分析:捨近求遠,練習容器,可以使用List容器很簡單實現。
*/
public class Sort {
public static List<Double> readDouble(String str, String sp){
List<Double> l = new ArrayList<Double>();
int j = 0;
for(int i=0; i<str.length(); i++){
if(str.substring(i, i+1).equalsIgnoreCase(sp) ){
l.add(Double.parseDouble(str.substring(j, i)));
j = i + 1;
}
}
return l;
}
public static void main(String[] args) {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
List<Double> l = null;
try {
System.out.println("輸入數據,如:1,2,3,4,");
l = readDouble(br.readLine(), ",");
} catch (IOException e) {
e.printStackTrace();
}
System.out.println(l.isEmpty());
Collections.sort(l);
Iterator<Double> it = l.iterator();
while(it.hasNext()){
System.out.print(it.next() + " ");
}
}
}