Purchase Solution

Java - KeyboardWord

Not what you're looking for?

Ask Custom Question

Write a program that inputs a word from the keyboard and determines the length of the word. Print the word using twice the length as the field width.

Purchase this Solution

Solution Summary

Write a program that inputs a word from the keyboard and determines the length of the word.

Solution Preview

Please see the attached file.

// KeyboardWord.java

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

public class KeyboardWord extends JApplet {
private JLabel inputLabel=new JLabel("Input: ");
private JLabel lengthLabel=new JLabel("Length: ");
private JTextField input=new JTextField();
private JLabel length=new JLabel();
private ...

Purchase this Solution


Free BrainMass Quizzes
Excel Introductory Quiz

This quiz tests your knowledge of basics of MS-Excel.

Basic Networking Questions

This quiz consists of some basic networking questions.

C# variables and classes

This quiz contains questions about C# classes and variables.

Basic Computer Terms

We use many basic terms like bit, pixel in our usual conversations about computers. Are we aware of what these mean? This little quiz is an attempt towards discovering that.

C++ Operators

This quiz tests a student's knowledge about C++ operators.