| /home/chloe/NetBeansProjects/ADSV Java/lab7_ChloeFontenot/src/main/java/com/chloefontenot/lab7_chloefontenot/Or2.java |
package com.chloefontenot.lab7_chloefontenot;
import java.util.Scanner;
@author
public class Or2 {
public static void main(String[] args)
{
Scanner input = new Scanner(System.in);
int number;
System.out.print("Please enter a number less than 0 or divisable by 3 or both: ");
number = input.nextInt();
if ( number % 3 == 0 || number < 0)
{
System.out.println("Thank you for entering number " + number);
}
else
{
System.out.println(number + " is not fufilling the request!");
}
}
}