Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.

QUESTION

import java.Scanner; /** * 3.2PP Tweet Generator * * @author Replace with your name */ public class TweetBot { public static void main(String args) {...

import java.util.Scanner;/** * 3.2PP Tweet Generator * * Replace with your name */ { void main(String[] args) {Scanner sc = Scanner(System.in);String handle; int tweets; System.out.println();System.out.println();System.out.();handle = sc.next();System.out.();tweets = sc.nextInt();}}Program: TweetBotVariables:Scanner scString handle, some user's Twitter identity (without @)String adjective, a one word adjectiveint tweets, user's total tweetsint followers, their number of followersint following, number of other users they are followingint difference, difference between followers followingSteps: Create Scanner sc Display the title of the program: Prompt person's Twitter handle without the leading @ sign and store in handle4. Prompt for an adjective (e.g., good, bad) to describe them and store in adjective5. Prompt for person's number of tweets store in tweets Prompt how many followers they have store in followers Prompt number they are following store in following Calculate their influence followers - following store in difference Display the following formatted messages, where each highlighted entryrepresents that variable's value:#adjective @handle has only followers followers!Net influence of difference not bad since only tweeted tweets times.@realhandle would be a better handle though
Show more
LEARN MORE EFFECTIVELY AND GET BETTER GRADES!
Ask a Question