write my assignment 14989

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 [email protected] would be a better handle though
 
"Not answered?"
Get the Answer