自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(13)
  • 资源 (1)
  • 收藏
  • 关注

原创 uniapp使用拉取excel表数据下载

记录uniapp使用拉取excel表数据下载。

2023-09-24 12:29:12 188 1

原创 99乘法表

public static void main(String[] args) { for(int j=1;j<10;j++) { for(int i=1;i<=j;i++) { System.out.print(j+"*"+i+"="+j*i+"\t"); } System.out.println(); }}

2019-07-09 20:57:58 81

原创 升序排序

public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.println("请依次输入三个整数:a,b,c"); int a = scanner.nextInt(); int b = scanner.nextInt(); int c = scanner.nex...

2019-07-09 20:56:59 165

原创 水仙花数

public static void main(String[] args) {Scanner scanner = new Scanner(System.in);int a = scanner.nextInt();int x = a%10;int y = a/10%10;int z = a/100%10;if(xxx+yyy+zzz==a) {System.out.println(a...

2019-07-09 20:56:23 75

原创 数列求和

public static void main(String[] args) {// TODO Auto-generated method stublong sum=0;long relst = 0;for(int i=1;i<=10;i++) {relst = relst*10+9;System.out.println(relst);sum+=relst;}System....

2019-07-09 20:55:24 107

原创 完全平方

public class 完全平方 {// 一个加上100刚好是个完全平方数,再加上168刚好是个完全平方数/*** @param args*/public static void main(String[] args) {int i = 0;int x, y;while (true) {x = (int) Math.sqrt(i + 100);y = (int) Math.s...

2019-07-09 20:53:55 147

原创 客户端与服务器2

package socket;import java.io.BufferedReader;import java.io.BufferedWriter;import java.io.IOException;import java.io.InputStream;import java.io.InputStreamReader;import java.io.OutputStream;imp...

2019-07-09 10:23:28 127

原创 一球从100米高度自由落下,每次落地后反跳回原高度的一半;再落下,求它在第10次落地时,共经过多少米?第10次反弹多高

public class Rebound {&nbsp;public static void main(String[] args) {&nbsp;&nbsp;double min = 0;&nbsp;&nbsp;for(int i=1;i&lt;=10;i++) {&nbsp;&nbsp;&nbsp;if(i&gt;1) {&nbsp;&nbsp;&nbsp;&nbsp;min=min

2019-01-19 11:05:39 213

原创 已知 XYZ+YZZ=532,其中,X、Y、Z 为数字,编程求出 X、Y 和 Z 的值。一层循环解决

public class BegXYZ {public static void main(String[] args) {Random rand = new Random();while(true) {int X = rand.nextInt(10);int Y = rand.nextInt(10);int Z = rand.nextInt(10);int sum=X100+Y10...

2019-01-19 11:01:01 11868

原创 取款

package day01;import java.util.Scanner;public class 银行取款 {/** * @param args */public static void main(String[] args) { Scanner scanner = new Scanner(System.in); double money = 1000000; double...

2018-12-15 09:49:50 155

原创 超市收银v5

package day14;import java.util.Scanner;public class 收银管理系统 {static Scanner scanner = new Scanner(System.in);static int input = 0;// 选择登陆方式static double inpu = 0;// 数量static double inpu1 = 0;// 单...

2018-12-14 21:30:45 195

原创 收银

import java.math.BigDecimal;import java.util.Scanner;public class 收银系统方法 {static Scanner scanner = new Scanner(System.in);static double quantity;// 商品数量static double price;// 商品单价static double p...

2018-12-14 14:33:26 413

翻译 小学生题库

小学生题库public class 方法小学题库 {static int input;static int score;static Scanner scanner = new Scanner(System.in);static Random random = new Random();public static void main(String[] args) {System.ou...

2018-12-14 14:33:01 969

扑克牌图片素材

扑克牌游戏图片,欢迎使用。

2018-12-18

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除