簡體   English   中英

堅持使用Java程序(java.io. *;)?

[英]Stuck on Java program (java.io.*;)?

我程序的目的是詢問溫度(F)是多少,以及外面的天氣情況如何。

天氣條件可以是晴天(1),下雨(2),多雲(3)或下雪(4.)數字1-4將用於闡明天氣條件(我不確定該怎么做還有其他方法...)

然后,根據tempweatherCondition的組合,我希望能夠根據tempweatherCondition的組合顯示10種選擇中的3件衣服。

我仍在學習,因此如果我的問題似乎很平凡,我深表歉意...

當用戶輸入tempweatherCondition ,將根據兩個輸入的組合(例如,熱晴天, weatherCondition )給出響應。

相反,我想創建一個或多個txt文件,並讓每個文件都命名為hotSunny.txt 在這些txt文件中,我列出了10種服裝。 我最終希望程序識別出哪個組合匹配其適當的txt文件,然后隨機顯示10個中的3個。

我到目前為止所擁有的...

   public static void main(String[] args)
   {
      double temperature;    
      int weatherCondition;  
      String input;          


      input = JOptionPane.showInputDialog("What is " +
                                "the current temperature?");
      temperature = Double.parseDouble(input);


      input = JOptionPane.showInputDialog("Sweet I now know the temperature! " +
             "Now please take a look out the nearest window is it Sunny , Rainy ," +
             " Cloudy or Snowy? " +
             "(1 = Sunny) (2 = Raining) " +
             "(3 = Cloudy) (4 = Snowing)");


      weatherCondition = Integer.parseInt(input);


      if (temperature <= 32){
          if (weatherCondition == 4){
              freezingSnowing();
          } else if (weatherCondition == 3){
              freezingCloudy();
          } else if (weatherCondition == 2){
              freezingRain();
          } else {
              freezingSunny();
          }
    }..........
      else if ((temperature >= 33) && (temperature <= 50)) {

      else if ((temperature >= 51) && (temperature <= 75)) {

      else if ((temperature >= 76) && (temperature <= 140)) {

public static void freezingSnowing()       
{
   JOptionPane.showMessageDialog(null, "It's is snowing! I recommend that you dress very warm" +
                         "and wear a large coat that is preferably water proof.");
} 

您的freezingSnowing方法應如下所示:

public static void freezingSnowing() {
    file = new File(MyWeatherApp.class.getResource
                                (path + "freezingSnowing.txt"));
                   // path to the txt file
                   // where path is the local path to the file
    scanner = new Scanner(file);

    ArrayList<String> garments = new ArrayList<>(10);
    while(scanner.hasNextLine()) {
        garments.add(scanner.nextLine());
    }

    ArrayList<Integer> indices = new ArrayList<>(3);
    for(int i = 0; i < 3; i++) {
        while(true) { // watch out for duplicates
           int rand = (int)(Math.random() * 9);
           if(!indices.contains(rand))
               break;
        }
        indices.add(rand);

    JOptionPane.showMessageDialog(null, "It's is snowing! " +
                "I recommend that you dress very warm " +
                "and wear " + garments.get(indices.get(1)) +
                ", " garments.get(indices.get(2)) +
                " and " + garments.get(indices.get(3)) +
                ".");
}

這是我的隨機選擇項目版本。

public static void main(String[] args) {
    String[] weatherCond = new String[] {"cold", "hot"};
    ArrayList<String> garmets = new ArrayList<String>();
    garmets.add("clothes");
    garmets.add("hat");
    garmets.add("gloves");
    garmets.add("coat");
    ArrayList<String> pick;
    int ITEM = 3;

    int temperature = 29;

    if (temperature >= 30) {  // hot condition
        System.out.println("weather condition " + weatherCond[0]);
        pick = garmets;
        for (int i = 0; i < ITEM; i++) {
            int idx = (int) (Math.round(Math.random() * pick.size()) % pick.size());        
            System.out.print(pick.get(idx) + " " );
            pick.remove(idx);
        }
    } else {
        System.out.println("weather condition " + weatherCond[1]);
        pick = garmets;
        for (int i = 0; i < ITEM; i++) {
            int idx = (int) (Math.round(Math.random() * pick.size()) % pick.size());        
            System.out.print(pick.get(idx) + " " );
            pick.remove(idx);
        }
    }
}

另外,如果你想使用一個固定組garmets的特定氣候條件下,你可以使用它使用的天氣狀況作為重點和garmet組作為值HashMap中

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM