Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class Shoot
- {
- public static void main (String arg[])
- {
- Scanner shoot = new Scanner(System.in);
- int harry = 0;
- int larry = 0;
- int harry1, larry1, total = 10;
- System.out.println("Enter the number of cans which is shot by Harry and Larry respectively: ");
- harry = shoot.nextInt();
- larry = shoot.nextInt();
- harry1 = total-harry;
- larry1 = total-larry;
- System.out.println("The number of cans which is not shot by Harry and Larry respectively are: ");
- System.out.println(harry1+" "+larry1);
- shoot.close();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment