Respuesta :
Answer:
void printAttitude (int pint){
if (pint == 1){
System.out.println("disagree");
}
if (pint == 2){
System.out.println("no opinion");
}
if (pint == 3){
System.out.println("agree");
}
}
Explanation:
Answer:
public class num4 {
public static void main(String[] args) {
int para =2;
printAttitude(para);
}
static void printAttitude( int para){
if(para==1){
System.out.println("disagree");
}
else if (para == 2){
System.out.println("no option");
}
else if (para==3){
System.out.println("agree");
}
}
}
Explanation:
Using Java Programming language:
Three if and else if statements are created to handle the conditions as given in the question (1,2,3) The output of disagree, no option and agree respectively is displayed using Java's output method System.out.println When these conditions are true
No else statement is provided to handle situations when the parameter value is neither (1,2,3), as a result, then program will do nothing and simply exits.