d. Wind speed - Wind wane
Answer:
The five eras are general- purpose mainframe and minicomputer computing, personal computers, client/server networks, ...
Just click the button you used to turn it on lol
The magical number seven, plus or minus two refers to the capacity of short term memory.
import java.util.Scanner;
public class JavaApplication76 {
public static String teenTalk(String message){
String newMessage = "";
for (int i = 0; i < message.length(); i ++){
char c = message.charAt(i);
if (Character.isWhitespace(c)){
newMessage += " like ";
c = Character.MIN_VALUE;
}
newMessage += c;
}
return newMessage;
}
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("Enter the text message being sent:");
String message = scan.nextLine();
System.out.println("The teen talk text would be:");
System.out.println(teenTalk(message));
}
}
I hope this helps!