具有3个条件的字符串格式:是否可能?

时间:2015-05-22 15:59:13

标签: java string format output conditional-operator

我想格式化输出文本,使其与我的计数器值对应。例如,我有3个计数器,并希望在1,2和2以上时输出不同的单词。

我尝试使用String格式,但它只适用于2个不同的计数器。

这是我的代码:

package vaja13;
import java.util.Scanner;
public class Vaja13
{
    public static void main(String[] args)
    {
        System.out.print("Vnesi besedilo: ");
        Scanner sc = new Scanner(System.in);
        String besedilo = sc.nextLine();
        char [] tabela  = besedilo.toCharArray();
        int crke = 0,stevilke = 0,presledki  = 0;
        int i=0;
        while(i<tabela.length-1)
        {
           if (Character.isLetter(tabela[i]))
           {
            crke++;
            i++;
           }
            if (Character.isDigit(tabela[i]))
            {
                stevilke++;
                i++;
            }
            if (Character.isWhitespace(tabela[i]))
            {
                presledki++;
                i++;
            }
        }  
       System.out.println(String.format("V besedilu je %d %s ", crke,crke==2,crke >2 ? "crka":"crki":"crke"));
        }
    }

4 个答案:

答案 0 :(得分:0)

在最后System.out.println行中,3个条件部分

crke==2,crke >2 ? "crka":"crki":"crke"

是无效的Java语法,您可以使用:

crke==2 ? "crka": crke > 2 ? "crki" :"crke"

但这有点难以理解。请注意? :运算符从右到左关联。

答案 1 :(得分:0)

而不是

System.out.println(String.format("V besedilu je %d %s ", crke,crke==2,crke >2 ? "crka":"crki":"crke"));

你必须这样做:

System.out.println(String.format("V besedilu je %d %s ", crke, (crke==2 ? "crka": (crke > 2? "crki": "crke"))));

答案 2 :(得分:0)

您可以为后缀创建一个查找表,并在调用Math.min时使用它,如下所示:

private static String[] suffix = new String[] {"crka", "crki", "crke"};
...
for (int i = 0 ; i != 5 ; i++) {
    System.out.print(i+" ");
    System.out.println(String.format("V besedilu je %d %s ", i, suffix[Math.min(i, 2)]));
}

此解决方案的核心在表达式Math.min(i, 2)中,对于i的非负值,其评估如下:

    0i 时,
  • 01是一个
  • 时,
  • 12i或更高时
  • 2

请注意,对于i的负值,上述代码将失败。

Demo.

答案 3 :(得分:0)

感谢您的投入。我设法以这种方式解决了我的问题。

package vaja13;
import java.util.*;
class Vaja13 
{
    public static void main(String[] args) 
    {
        System.out.print("Vnesi besedilo: ");
        Scanner sc = new Scanner(System.in);
        String besedilo = sc.nextLine();
        char [] tabela  = besedilo.toCharArray();
        int crke = 0, stevke = 0, presledki = 0, i = 0;
        while(i<tabela.length)
        {
           if (Character.isLetter(tabela[i]))
           {
                crke++;
           }
           else if (Character.isDigit(tabela[i]))
            {
                stevke++;
            }
           else if (Character.isWhitespace(tabela[i]))
            {
                presledki++;
            }
           i++;
        }     


        Beseda besedaCrka = new Beseda
        (
                new String[]{"crk","crka","crki","crke"}
        );
        Beseda besedaStevka = new Beseda
        (
                new String []{"stevk","stevka","stevki","stevke"}
        );
        Beseda besedaPresledek = new Beseda 
        (
                new String [] {"presledkov","presledek","presledka","presledki"}
        );
        Beseda glagolBiti = new Beseda
        (
                new String [] {"je","je","sta","so"}
        );
        System.out.format("V besedilu %s %d %s, %d %s in %d %s.\n",
        glagolBiti.vrniObliko(crke),crke,besedaCrka.vrniObliko(crke),
        stevke,besedaStevka.vrniObliko(stevke),
        presledki,besedaPresledek.vrniObliko(presledki));

    }    
}
/**
 * Razred Beseda shranjuje slovnično obliko besede.
 */
class Beseda
{
    String oblikaBesede [];
    Beseda(String oblikaBesede[])
    {
        this.oblikaBesede = oblikaBesede;
    }
    String vrniObliko(int kolicina)
    {
      return  (kolicina < 1 || kolicina > 4? oblikaBesede[0] :
              (kolicina == 2 ? oblikaBesede[2] :
              (kolicina == 3 || kolicina == 4 ? oblikaBesede[3] :
              oblikaBesede[1])));
    }
}