[Bug 11695] New: import java.util.*; public class GeneralCalculation { static Scanner reader = new Scanner(System.in); public static void main(String[] args) { int Spearman, Slinger, Swordman, Planx, Archer, Sniper, Giro, Giant, Bomber, Ram, Catapult, Mortar, Doctor, Cook

http://www.w3.org/Bugs/Public/show_bug.cgi?id=11695

           Summary: import java.util.*; public class GeneralCalculation {
                    static Scanner reader = new Scanner(System.in); public
                    static void main(String[] args) { int Spearman,
                    Slinger, Swordman, Planx, Archer, Sniper, Giro, Giant,
                    Bomber, Ram, Catapult, Mortar, Doctor, Cook
           Product: HTML WG
           Version: unspecified
          Platform: Other
               URL: http://www.whatwg.org/specs/web-apps/current-work/#top
        OS/Version: other
            Status: NEW
          Severity: normal
          Priority: P3
         Component: HTML Canvas 2D Context (editor: Ian Hickson)
        AssignedTo: ian@hixie.ch
        ReportedBy: contributor@whatwg.org
         QAContact: public-html-bugzilla@w3.org
                CC: mike@w3.org, public-html-wg-issue-tracking@w3.org,
                    public-html@w3.org


Specification: http://dev.w3.org/html5/spec/Overview.html
Section: http://www.whatwg.org/specs/web-apps/current-work/complete.html#top

Comment:
import java.util.*;
public class GeneralCalculation
{
static Scanner reader = new Scanner(System.in);
public static void main(String[] args)
{
int Spearman, Slinger, Swordman, Planx, Archer, Sniper, Giro, Giant, Bomber,
Ram, Catapult, Mortar, Doctor, Cook;
int RamShip, PaddleWheelRam, BallistaShip, FireShip, MortarShip, CatapultShip,
DivingShip;
double totalLand, totalSea, total;
System.out.println("כמה נושאי חנית יש לך?");
Spearman = reader.nextInt();
System.out.println("כמה קלעים יש לך?");
Slinger = reader.nextInt();
System.out.println("כמה נושאי חרב יש לך?");
Swordman = reader.nextInt();
System.out.println("כמה פלנקסים יש לך?");
Planx = reader.nextInt();
System.out.println("כמה קשתים יש לך?");
Archer = reader.nextInt();
System.out.println("כמה רובאים יש לך?");
Sniper = reader.nextInt();
System.out.println("כמה גירוקוטפרים יש לך?");
Giro = reader.nextInt();
System.out.println("כמה ענקי קיטור יש לך?");
Giant = reader.nextInt();
System.out.println("כמה מפציצים יש לך?");
Bomber = reader.nextInt();
System.out.println("כמה איילי ניגוח יש לך?");
Ram = reader.nextInt();
System.out.println("כמה קטפולות יש לך?");
Catapult = reader.nextInt();
System.out.println("כמה מרגמות יש לך?");
Mortar = reader.nextInt();
System.out.println("כמה רופאים יש לך?");
Doctor = reader.nextInt();
System.out.println("כמה טבחים יש לך?");
Cook = reader.nextInt();
totalLand = Spearman*0.6 + Slinger*0.4 + Swordman*1.2 + Planx*1.4 + Archer*1.1
+ Sniper*4 + Giro*2.5 + Giant*6.2 + Bomber*5.8 + Ram*4.4 + Catapult*10.2 +
Mortar*31 + Doctor*10 + Cook*4;
System.out.println("החיילים שלך שווים " + totalLand + "
גנרלים.");
System.out.println("~~~~~~~~~~");
System.out.println("כמה ספינות אייל ברזל יש לך?");
RamShip = reader.nextInt();
System.out.println("כמה ספינות אייל ברזל מושט יש
לך?");
PaddleWheelRam = reader.nextInt();
System.out.println("כמה ספינות בליסטרה יש לך?");
BallistaShip = reader.nextInt();
System.out.println("כמה ספינות להביור יש לך?");
FireShip = reader.nextInt();
System.out.println("כמה ספינות מרגמה יש לך?");
MortarShip = reader.nextInt();
System.out.println("כמה ספינות קטפולה יש לך?");
CatapultShip = reader.nextInt();
System.out.println("כמה צוללות יש לך?");
DivingShip = reader.nextInt();
totalSea = RamShip*5.4 + PaddleWheelRam*36 + BallistaShip*6.8 + FireShip*6.2 +
MortarShip*22.4 + CatapultShip*6.4 + DivingShip*18.2 ;
System.out.println("הצי הימי שלך שווה " + totalSea + "
גנרלים.");
System.out.println("~~~~~~~~~~");
total = totalLand + totalSea;
System.out.println("הצבא שלך שווה בסך הכל " + total + "
גנרלים." );
System.out.println(" ");
System.out.println("קרדיט ל-eliranisrael, יוצר הקוד.");
}

} 

__________________


Posted from: 109.65.203.17

-- 
Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.

Received on Friday, 7 January 2011 20:21:24 UTC