javaはグラフィックスカードの並べ替えゲームを実現します。


本論文の例では、Javaグラフィックスカードの並べ替えゲームを実現するための具体的なコードを共有します。
クラスの継承、多形性の使い方、インターフェースの応用をマスターします。
入力フォーマット:
まず、1行に数字(1~4、整数)を入力します。1は丸カード、2は長方形カード、3は三角形カード、4は台形カードです。各数字の間を1つ以上のスペースで区切って「0」で終了します。例えば、1 3 4 2 1 4 4 4 4 2 1 1 3 1 3 0
それから、最初の行の数字によって表されるカードの図形の種類によって、順番に各図形の関連パラメータを入力します。例えば、丸いカードは円の半径を入力する必要があります。矩形カードは矩形の幅と長さを入力しなければなりません。三角形カードは三角形の三辺の長さを入力します。台形は台形の上底、下底、及び高さを入力します。各データは一つ以上のスペースで区切られます。
出力フォーマット:
図の数が0以下、または図形の属性値が不正である場合(数値が0以下、三角形の3つの辺は三角形を構成できません)、Wrong Formatを出力します。
入力が適法であれば、正常に出力し、すべての数値を計算した後、小数点以下の二桁を保留すればいいです。出力内容は以下の通りです。
ソート前の各パターンタイプと面積は、パターン名1:面積値1パターン名2:面積値2…パターン名n:面積値n、各図出力間はスペースで区切られ、最後に分離用スペースがあります。
並べ替え後の図の種類と面積、フォーマットは並べ替え前の出力と同じです。
すべての図の面積の合計は、Sum of araの形式です。総面積の値です。
入力例1:
ここでは入力のセットが与えられます。たとえば:
1 5 3 2 0
出力例1:
ここでは対応する出力を与える。たとえば:
Wrong Format
入力サンプル2:
ここでは入力のセットが与えられます。たとえば:
4 2 1 3 0
3.2 2.5 0.4 2.3.1.4 5.6 2.3.4.2 3.5
出力例2:
ここでは対応する出力を与える。たとえば:
Theオリジンリスト:
Trapezoid:1.14 Rectangle:3.22 Circule:98.52 Triangle:4.02
The sorted list:
Circule:98.52 Triangle:4.02 Rectangle:3.22 Trapezoid:1.14
Sum of ara:106.91
入力サンプル3:
ここでは入力のセットが与えられます。たとえば:
4 2 1 3 0
3.2 2.5.0.4 2.3.1.4.5.6.4.2.8.4
出力例3:
ここでは対応する出力を与える。たとえば:
Wrong Format
参考コードは以下の通りです。

import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;

public class Main {
 // Main        Scanner  ,                    ,   
 //  Main.input.next…  (    )
 public static Scanner input = new Scanner(System.in);
 public static void main(String[] args){
 ArrayList<Integer> list = new ArrayList<Integer>();
 int num = input.nextInt();
 while(num != 0){
 if(num < 0 || num > 4){
 System.out.println("Wrong Format");
 System.exit(0);
 }
 list.add(num);
 num = input.nextInt();
 }
 DealCardList dealCardList = new DealCardList(list);
 if(!dealCardList.validate()){
 System.out.println("Wrong Format");
 System.exit(0);
 }
 dealCardList.showResult();
 input.close();
 }
 }
class Card{
 Shape shape;
 Card(){
 
 }
 Card(Shape shape){
 this.shape=shape;
 }
 public Shape getShape() {
 return shape;
 }
 public void setShape(Shape Shape) {
 this.shape=shape;
 }
 
}
class DealCardList{
 ArrayList<Card> cardList=new ArrayList<Card>();
 DealCardList(){
 
 }
 DealCardList(ArrayList<Integer> list){
 for(int i=0;i<list.size();i++)
 {
 if(list.get(i)==1)
 {
 double r=Main.input.nextDouble();
 Circle circle=new Circle(r);
 Card card=new Card(circle);
 card.getShape().setShapeName("Circle");
 cardList.add(card); 
 }
 if(list.get(i)==2) {
 double a=Main.input.nextDouble();
 double b=Main.input.nextDouble();
 Rectangle rectangle=new Rectangle(a,b);
 Card card=new Card(rectangle);
 card.getShape().setShapeName("Rectangle");
 cardList.add(card);
 }
 if(list.get(i)==3) {
 double a=Main.input.nextDouble();
 double b=Main.input.nextDouble();
 double c=Main.input.nextDouble();
 Triangle triangle=new Triangle(a,b,c);
 Card card=new Card(triangle);
 card.getShape().setShapeName("Triangle");
 cardList.add(card);
 }
 if(list.get(i)==4) {
 double a=Main.input.nextDouble();
 double b=Main.input.nextDouble();
 double c=Main.input.nextDouble();
 Traperoid traperoid=new Traperoid(a,b,c);
 Card card=new Card(traperoid);
 card.getShape().setShapeName("Trapezoid");
 cardList.add(card);
 }
 }
 }
 public boolean validate() {
 for(int i=0;i<cardList.size();i++)
 {if(!cardList.get(i).getShape().vaildate())
  return false;}
 return true;
 }
 public void cardSort() {
 for(int k=0;k<cardList.size();k++)
 for(int i=k+1;i<cardList.size();i++)
 {
 if(cardList.get(k).getShape().getArea()<cardList.get(i).getShape().getArea())
  Collections.swap(cardList, k, i);
 }
 
 
 }
 public double getAllArea() {
 double s=0;
 for(int i=0;i<cardList.size();i++)
 s=s+cardList.get(i).getShape().getArea();
 return s;
 }
 public void showResult() {
 System.out.println("The original list:");
 for(int i=0;i<cardList.size();i++)
 System.out.print(cardList.get(i).getShape().getShapeName()+":"+String.format("%.2f",cardList.get(i).getShape().getArea())+" ");
 System.out.println();
 System.out.println("The sorted list:");
 cardSort();
 for(int i=0;i<cardList.size();i++)
 System.out.print(cardList.get(i).getShape().getShapeName()+":"+String.format("%.2f",cardList.get(i).getShape().getArea())+" ");
 System.out.println();
 System.out.println("Sum of area:"+String.format("%.2f",getAllArea()));
 }
}
 class Shape {
 private String shapeName;
 Shape(){
 
 }
 Shape(String shapeName){
 this.shapeName=shapeName;
 }
 public String getShapeName() {
 return shapeName;
 }
 public void setShapeName(String shapeName) {
 this.shapeName=shapeName;
 }
 public double getArea() {
 return 0.0;
 }
 public boolean vaildate() {
 return true;
 }
 
}
class Circle extends Shape{
 private double radius;
 Circle(){
 
 }
 Circle(double radius){
 this.radius=radius;
 }
 public double getArea() {
 return Math.PI*radius*radius;
 }
 public boolean vaildate() {
 if(radius>0)
 return true;
 else return false;
 }
}
class Rectangle extends Shape{
 private double width,length;
 Rectangle (double width,double length){
 this.width=width;
 this.length=length;
 }
 public double getArea() {
 return width*length;
 }
 public boolean vaildate() {
 if(width>0&&length>0)
 return true;
 else return false;
 }
 
}
class Triangle extends Shape{
 double side1,side2,side3;
 Triangle(double side1,double side2,double side3){
 this.side1=side1;
 this.side2=side2;
 this.side3=side3;
 }
 public double getArea() {
 double c=(side1+side2+side3)/2;
 double s=Math.sqrt(c*(c-side1)*(c-side2)*(c-side3));
 return s;
 }
 public boolean vaildate() {
 if(side1+side2>side3&&side1+side3>side2&&side2+side3>side1)
 return true;
 else
 return false;
 }

 
}
class Traperoid extends Shape{
 private double topSide,bottomSide,height;
 Traperoid(){
 
 }
 Traperoid(double topSide,double bottomSide,double height){
 this.bottomSide=bottomSide;
 this.height=height;
 this.topSide=topSide;
 }
 public double getArea() {
 return (topSide+bottomSide)*height/2;
 }
 public boolean validate() {
 if(topSide>0&&bottomSide>0&&height>0)
 return true;
 else return false;
 }
}
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。