Advertisement
porteno

y_q4

Dec 7th, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. import java.util.*;
  2.  
  3. public class Q4 {
  4.  
  5. public static void main(String[] args) {
  6. Scanner s = new Scanner(System.in);
  7. System.out.println("enter serial number of the sanck: ");
  8. int serial = s.nextInt();
  9. System.out.println("enter calories amount: ");
  10. int cal = s.nextInt();
  11. System.out.println("fat weight of the snack: ");
  12. int fat = s.nextInt();
  13. if(cal<130 && fat<5)
  14. System.out.println("its a healty snack");
  15. else
  16. System.out.println("its not a healty snack");
  17.  
  18. }
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement