私のコードでreplace関数を使用すると読むことができます。 ねえ、私です。 ねえ、(名前)。 ヘイ、(名前)のみを印刷する必要があるとき。 そして、私は理由を理解していません。コードは次のとおりです。javaを2つの文字列に置き換えてください
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package fiestaaburrida;
import java.util.Scanner;
/**
*
* @author xBaco
*/
public class FiestaAburrida {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
Scanner teclado = new Scanner(System.in);
int times = teclado.nextInt();
int index = 0;
while (index < times){
String greeting = teclado.next();
String newgreeting = greeting.replace("I'm ","");
System.out.println("Hey, "+newgreeting+".");
}
}
}
'times'の値は何ですか?' greeting'には何を入力しましたか? –
あなたの入力は何ですか? – user3437460
コードを取得しようとしている入力を入力してください。 – Yashovardhan