Sure, I can help you with that! Here's a simple solution using if-else statements:
```java
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("Enter three numbers:");
int num1 = scanner.nextInt();
int num2 = scanner.nextInt();
int num3 = scanner.nextInt();
if (num1 == num2 && num2 == num3) {
System.out.println("yes");
} else {
System.out.println("no");
}
scanner.close();
}
}
```
In this code, we first prompt the user to enter three numbers. Then, we use if-else statements to check if all three numbers are equal. If they are, we print "yes", otherwise we print "no". The && is a logical AND operator which checks if both conditions on its left and right sides are true. So in this case, it checks if all three numbers are equal. If you're looking for further
help with Java assignment, there are resources available online that can provide guidance and support, such as
programminghomeworkhelp.com.