首页 > 代码库 > Java学习笔记11
Java学习笔记11
package welcome; import java.util.Scanner; /* * 代数问题:求解2x2线性方程 */ public class ComputeLinearEquation { public static void main(String[] args) { Scanner in = new Scanner(System.in); System.out.print("Enter a, b, c, d, e, f: "); double a = in.nextDouble(); double b = in.nextDouble(); double c = in.nextDouble(); double d = in.nextDouble(); double e = in.nextDouble(); double f = in.nextDouble(); double x = 0; double y = 0; if (a * d - b * c != 0) { x = (e * d - b * f) / (a * d - b * c); y = (a * f - e * c) / (a * d - b * c); } else { System.out.println("The equation has no solution"); System.exit(0); } System.out.println("x is " + x + " and y is " + y); } }
package welcome; import java.util.Scanner; /* * 游戏:学习加法 */ public class TestAddition { public static void main(String[] args) { int a = (int)(Math.random() * 100); int b = (int)(Math.random() * 100); Scanner in = new Scanner(System.in); System.out.print("What is " + a + " add " + b + " ? "); int guess = in.nextInt(); if(a + b == guess){ System.out.println("true"); }else{ System.out.println("false"); } } }
package welcome; import java.util.Scanner; /* * 计算一个三角形的周长 */ public class ComputeGirth { public static void main(String[] args) { Scanner in = new Scanner(System.in); System.out.print("Enter three sides of a triangle: "); double a = in.nextDouble(); double b = in.nextDouble(); double c = in.nextDouble(); double G = 0; if(a + b > c && a + c > b && b + c > a){ G = a + b + c; }else{ System.out.println("The input is illegal"); System.exit(0); } System.out.println("The triangle has a circumference of " + G); } }
Java学习笔记11
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。