自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 收藏
  • 关注

原创 输出九行三角形

public class wyd { public static void main(String[] args) { for (int a = 1; a <=9; a++) { for (int b = 9; b >= a; b--) { System.out.print(" "); } for (int b = 1; b <= a; b++) { .

2021-11-16 15:06:05 331

原创 九九乘法表

public class wy8 { public static void main(String[] args) { int a, b; for (a= 1; a <= 9; a++) { for (b = 1; b <= a; b++) { System.out.print(a + "*" + b + "=" + a * b + "\t"); if(a==b) S.

2021-11-15 22:30:54 195

原创 录取分数线查询

package com.company;import java.util.Scanner;public class wy4 { public static void main(String[] args) {System.out.println("请输入要查询的录取分数线(比如民办本科,艺术类本科,体育类本科,二本,一本):");Scanner variety=new Scanner(System.in);String x= variety.next(); switch(.

2021-11-15 16:44:20 336

原创 三位水仙花数

import java.util.Scanner;public class wy7 { public static void main(String[] args) { int a=0; for (int i = 100; i <= 999; i++) {int b=i%10;int c=i/10%10;int d=i/100%10;if(i==b*b*b+c*c*c+d*d*d){ a++; System.out.println(.

2021-11-15 16:39:14 398

原创 润年的判断

package com.company;import java.util.Scanner;public class wy1 { public static void main(String[]args) { System.out.println(""); int year; Scanner A = new Scanner(System.in); year = A.nextInt(); if ((year % 4 =.

2021-11-13 15:22:28 378

原创 月份的分类

package com.company;import java.util.Scanner;public class wy4 {public static void main(String[] args){int l=3;switch(l){ case 3: case 4: case 5: System.out.println("春天"); case 6: case 7: case 8: System.out.println("夏天"); c.

2021-11-12 16:43:43 641

空空如也

空空如也

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

TA关注的人

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