上一页 1 ··· 5 6 7 8 9

2017年10月27日

narcissus

摘要: public class narcissus{ public static void main(String args[]) { long u=0,t=0,h=0,y=0,k=0; for(long x=100; x<1000;x++) { u=x%10; ... 阅读全文

posted @ 2017-10-27 10:46 MACHINE_001 阅读(74) 评论(0) 推荐(0) 编辑

crest value &minimum

摘要: public class paixu { public static void main(String[] args) { double temp; double num[]={5.1, 7.12, 1.2, 5.21}; for(int i=... 阅读全文

posted @ 2017-10-27 10:07 MACHINE_001 阅读(77) 评论(0) 推荐(0) 编辑

factorial

摘要: import java.math.BigDecimal;public class factorial { public static void main(String[] args) { BigDecimal y= new BigDecimal(1); for(... 阅读全文

posted @ 2017-10-27 10:04 MACHINE_001 阅读(109) 评论(0) 推荐(0) 编辑

2017年10月26日

Str_turn

摘要: public class Str_turn{ public static void main(String args[]) { String Str1 = new String("This is a book."); char temp[]=Str1.toChar... 阅读全文

posted @ 2017-10-26 17:14 MACHINE_001 阅读(66) 评论(0) 推荐(0) 编辑

2017年10月21日

array_x

摘要: import java.util.*;public class array_x{ public static void main(String args[]) { int a[][]={{2,4,5},{7,9,10},{12,15,17}}; int key=0... 阅读全文

posted @ 2017-10-21 10:44 MACHINE_001 阅读(85) 评论(0) 推荐(0) 编辑

Calculator

摘要: import java.util.Scanner;public class Sum_{ public static void main(String args[]) { int x,y; char k; String str ; Scanner reader=... 阅读全文

posted @ 2017-10-21 10:26 MACHINE_001 阅读(118) 评论(0) 推荐(0) 编辑

2017年10月20日

GuessNumber

摘要: import java.util.Scanner;import java.util.Random;public class GuessNumber{ public static void main(String args[]) { Scanner reader=ne... 阅读全文

posted @ 2017-10-20 22:41 MACHINE_001 阅读(170) 评论(0) 推荐(0) 编辑

CopyArrays

摘要: import java.util.Arrays;public class CopyArrays{ public static void main(String args[]) { int []a = {1, 2, 3, 4, 500, 600, 700, 800};... 阅读全文

posted @ 2017-10-20 22:40 MACHINE_001 阅读(152) 评论(0) 推荐(0) 编辑

Mult

摘要: public class MULT{ public static void main(String args[]) { int k; for(int x=1;x<=9;x++) { for(int y=1;y<=x;y++) { k=y*x; ... 阅读全文

posted @ 2017-10-20 22:38 MACHINE_001 阅读(257) 评论(0) 推荐(0) 编辑

上一页 1 ··· 5 6 7 8 9

导航