Advertisement
apez1

Term 1: Lesson 13 - Coding Activity 1

Sep 25th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. package project;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class Posneg {
  6.  
  7. public static void main(String[] args) {
  8.  
  9. Scanner scanner = new Scanner(System.in);
  10.  
  11. int x = scanner.nextInt();
  12.  
  13. if(x < 0) {
  14. System.out.println("Negative");
  15. }
  16. else {
  17. System.out.println("Positive");
  18. }
  19.  
  20.  
  21. }
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement