摘要:
public class Demo { public static void main(String[] args) { //定于花色,1代表红桃,2代表黑桃,3代表梅花,4代表方片 int a = (int) (Math.random()*4+1); //定义牌的张数 int b = (int) (Math.random(... 阅读全文
摘要:
/* * 判断一个点是不是在圆内 * * */ public class Demo { public static void main(String[] args) { //提示用户定义圆形和半径 Scanner sc = new Scanner(System.in); //请输入圆形坐标 System.out.println("请输入圆心坐标:"); doub... 阅读全文
摘要:
import java.util.Scanner; /* * * * */ public class Demo { public static void main(String[] args) { //提示用户输出年数个月份 Scanner sc = new Scanner(System.in); System.out.print... 阅读全文
摘要:
/*猜数字游戏 * * * */ public class Demo { public static void main(String[] args) { //随机产生0-100的整数 int a = (int) (Math.random()*100); int b = (int) (Math.random()*100); ... 阅读全文
摘要:
/* * * 需求: * 求一元二次方程的2个跟 * * */ public class Demo { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("请输入a,b,c的值:"); ... 阅读全文