There's no such thing as a stupid question, but they're the easiest to answer.
JoinTour
Login
 
Tag Cloud
access audio avg avg 8 bios blue screen boot bsod computer connection cpu crash css dell desktop dma driver drivers dvd email error excel explorer firefox firefox 3 freeze gimp graphics hard drive hardware hijackthis hjt install internet internet explorer itunes keyboard laptop macro malware monitor motherboard network networking outlook outlook 2003 outlook 2007 outlook express pio problem problems router seo server slow sound sp3 spyware trojan usb video virtumonde virus vista vundo windows windows vista windows xp winxp wireless
Software Development
Search
Search in:
 
Advanced Search
Tech Support Guy Forums > Software & Hardware > Software Development >
Solved: java.charAt declaration


HELLO AND WELCOME! Before you can post your question, you'll have to register -- it's completely free! Click here to join today! We highly recommend that you print a copy of our Guide for New Members. Enjoy!

 
Thread Tools
cats31's Avatar
Member with 39 posts.
 
Join Date: Aug 2004
Experience: Intermediate
13-Mar-2008, 05:23 AM #1
Post Solved: java.charAt declaration
I've been trying to make a java program, but i'm unable to make one section of it work the way I want it to

It's based on the following attachment. It is supposed to be a random name genrator for an assignment at Uni. It should take the first letter of your first name, the whole of your second name then give it a random number.

I have been able to make it do the last two tasks, however, I do not know how to make it take the first Char from the first name. I've made it take your whole first name because it is the only method that will work.
/**
* @(#)StarWarsNameGenerator.java
*
* StarWarsNameGenerator application
*
* @author
* @version 1.00 2008/3/12
*/

import java.util.*;


public class StarWarsNameGenerator {
static Scanner wars = new Scanner(System.in);

public static void main(String[] args)
{

// Prompt for User's Name
String letter1,letter2;


System.out.println("Please state your First Name");
letter1= wars.charAt(0);

System.out.println("Please state your Surname");
letter2=wars.next();

//determine star wars name
Random generator = new Random();
int num1;
String Starwarsname;

num1 = generator.nextInt(99) + 10;
Starwarsname=letter1+letter2+(num1);


System.out.println("In a galaxy far, far away you are known as " + Starwarsname + " MAY THE FORCE be with you!");
}
}

I believe I need to enter something like "letter1=wars.charAt(0)" but it keeps on coming up with a variety of error messages.

Plese help me, or push me in the right direction.

Regards
Chicon's Avatar
Computer Specs
Distinguished Member with 6,611 posts.
 
Join Date: Jul 2004
Location: 50° 34' 07.13" N - 04° 10' 23.
Experience: Second socks retriever
13-Mar-2008, 08:34 AM #2
Hi cats31,

The object wars is a Scanner instance and therefore, it has no charAt method.
You may replace the line :
letter1= wars.charAt(0);
by
letter1= wars.next().charAt(0);
cats31's Avatar
Member with 39 posts.
 
Join Date: Aug 2004
Experience: Intermediate
14-Mar-2008, 02:37 AM #3
Thanks for pointing me in the right direction
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are Off
Refbacks are Off

You Are Using:
Server ID
Advertisements do not imply our endorsement of that product or service.
All times are GMT -4. The time now is 08:01 AM.
Copyright © 1996 - 2008 TechGuy, Inc. All rights reserved.
Powered by vBulletin, Copyright © 2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Powered by Cermak Technologies, Inc.