Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
3
Posts with Downvotes
3
Downvoting Members
2
0 Endorsements
~5K People Reached
Favorite Forums
Favorite Tags

8 Posted Topics

Member Avatar for cecillovell2
Member Avatar for pradiplamsal
Member Avatar for erer002
Member Avatar for bmwwbb54

import java.util.*; public class Initials { public static void main (String [] args) { Scanner keyboard = new Scanner (System.in); String name; System.out.println("Please enter your full name including your middle name: "); name = keyboard.nextLine(); System.out.println(" "); int x = name.indexOf(' ')+1; String nameTwo = name.substring(x,name.length()); int y = nameTwo.indexOf(' …

Member Avatar for Taywin
0
2K
Member Avatar for rmeron

you can try to go into the search bar and search for the folder and or one of the documents if oyu remember what it is called

Member Avatar for bmwwbb54
0
201
Member Avatar for bmwwbb54

Write a program that fills a one-dimensional array with 10 random integers between 1 and 25. The program should perform the following tasks: 1. Print the contents of the array horizontally. 2. Print the sum of the contents of the array. 3. Print the maximum number in the array. 4. …

Member Avatar for bmwwbb54
-1
185
Member Avatar for kinbo

Scanner keyboard = new scanner(System.in); System.out.print("please enter a number: "); textfieldone = keyboard.nextInt();

Member Avatar for bmwwbb54
0
221
Member Avatar for cecillovell2

The End.