Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 427 results for
scrabble
- Page 1
Scrabble
Programming
Software Development
15 Years Ago
by pateldeep454
…"Enter the tiles (use * for wildcard:", "
Scrabble
Tiles", JOptionPane.PLAIN_MESSAGE); boolean result = testWord ( testWord, tiles…"jjib")); } } [/CODE] LetterHist.java [CODE] package
scrabble
; public class LetterHist { public static int[] letterHist (String cal) {…
Re: Scrabble
Programming
Software Development
15 Years Ago
by pateldeep454
… the real question that I want solve is: In real
Scrabble
, there are some blank tiles that can be used as…
scrabble!
Programming
Software Development
17 Years Ago
by aaisha
… c++ for my use. if anyone who has worked on
scrabble
cud help me with it??also,we have'nt been…
scrabble class
Programming
Software Development
15 Years Ago
by nwalser
… described here:[url]http://en.wikipedia.org/wiki/
Scrabble
[/url]. We'll simplify this considerably, and … which you must use, and a file called
Scrabble
.java, which does the heavy lifting for the…f = s.next(); int size = s.nextInt();
Scrabble
scrab = new
Scrabble
(f,size); scrab.readLines(); scrab.reportWinner(); } catch(…
Scrabble Program
Programming
Software Development
15 Years Ago
by lacompsr
… It's described here:[url]http://en.wikipedia.org/wiki/
Scrabble
[/url]. We'll simplify this considerably, and consider the …following question. We begin with the letter-scoring scheme from
Scrabble
: a = 1, b = 3, c = 3, d = 2, ..., z =…scoring line in the the file? In keeping with the
Scrabble
style, we'll add double and triple letter scores: any…
Re: scrabble class
Programming
Software Development
15 Years Ago
by BestJewSinceJC
[QUOTE=nwalser;1194736]The
Scrabble
file should extend Echo, in the standard way we've …. If you're only allowed to write one file called
Scrabble
.java then implement the Word class as an inner class…
Re: scrabble class
Programming
Software Development
15 Years Ago
by nwalser
… if you could help me solve them. [CODE]public class
Scrabble
extends Echo{ private int wordLength; private int[] score = new int…]; private int maxScore = 0; private String maxScWord = " "; public
Scrabble
(String fn, int wl) throws IOException{ super(fn); wordLength = wl…
Re: scrabble class
Programming
Software Development
15 Years Ago
by nwalser
alright 1. was simple but im not sure what to do for 2. This is what im using right now: [code] public class
Scrabble
extends Echo{ public Word(String word, int val){ wordUsed = word; pointValue = val; } [/code]
Re: scrabble class
Programming
Software Development
15 Years Ago
by BestJewSinceJC
…'t put a constructor called Word in a class called
Scrabble
. You must either implement a separate class called Word, or…
Re: Scrabble in C
Programming
Software Development
15 Years Ago
by jephthah
i just pounded out a rough
scrabble
game, basically just the board and tile scoring. no dictionary … what you want with it. [CODE=C]//
SCRABBLE
GAME // by jephthah // // develops standard english
scrabble
board and allows user to 'place' // tiles…
Scrabble in C
Programming
Software Development
15 Years Ago
by AnujSuper9
… been given an assignment to create something of a simplified
Scrabble
game in C. I'll start of by mentioning that… words. Scoring is based on a template similar to traditional
Scrabble
letter scoring. Now, I haven't even began writing too…
Re: Scrabble in C
Programming
Software Development
15 Years Ago
by iamthwee
[url]http://www.gtoal.com/wordgames/
scrabble
.html[/url] Seemed like a good site, you could probably simplify that. A dynamic programming approach seems more logical than a brute force option.
Scrabble computer player
Programming
Software Development
19 Years Ago
by nisaa15
HI, I am trying to implement a
scrabble
computer player that is capable of beating a human player. …
Re: Scrabble
Programming
Software Development
15 Years Ago
by BestJewSinceJC
Can you paste us the error messages you get?
Re: Scrabble
Programming
Software Development
15 Years Ago
by pateldeep454
The error just says uncompilable source code. The error lines appear on lines 9 and 13 in LetterHist.java and on line 85 in Main.java
Re: Scrabble
Programming
Software Development
15 Years Ago
by BestJewSinceJC
[CODE]char ch = ''; //Not a valid char[/CODE] [CODE]char ch = ' '; //A valid char System.out.println("blah" + ch + "blah");[/CODE]
Re: Scrabble
Programming
Software Development
15 Years Ago
by Ezzaral
[QUOTE=pateldeep454;1188717]The error just says uncompilable source code. The error lines appear on lines 9 and 13 in LetterHist.java and on line 85 in Main.java[/QUOTE] No, the compiler does not just say "Uncompilable source code". There is an explicit reason given and you should take the time to read it.
Re: Scrabble
Programming
Software Development
15 Years Ago
by pateldeep454
There is only one error line appear now which is in main.java and it is on line 85. The error says that it cannot find symbol for letterHist.
Re: Scrabble
Programming
Software Development
15 Years Ago
by Tiger Woods
You have to call it as [ICODE]int count[] = LetterHist.letterHist ("afayafkhkFFGhjk");[/ICODE] Read this link on static methods in Java, it describes how to use static methods. [url]http://leepoint.net/notes-java/flow/methods/50static-methods.html[/url]
Re: Scrabble
Programming
Software Development
15 Years Ago
by BestJewSinceJC
Your teacher's suggestion is incomplete. Either your teacher is trying to get you to A. Describe an algorithm for figuring out the best possible letter, and placement, of the blank tile (such that it maximizes the point value of the word) B. Describe an algorithm for figuring out the best possible letter that should be on a blank tile, given its …
Re: Scrabble
Programming
Software Development
12 Years Ago
by svfox2000
Well like [[my program that I'm blatantly violating the rules promoting here]] there are blanks/wildcards. So if you don't want blanks then its first a database call.Its easier to query with the NOT keyword that only words with the users letters are returned. You just need to get the database call correct and then return that list to the user. …
Re: scrabble!
Programming
Software Development
17 Years Ago
by iamthwee
>i got the source code in c from a website Starting afresh, with your own ideas would be a good idea.
Re: scrabble!
Programming
Software Development
17 Years Ago
by fatnickc
Doing it yourself, as iamthwee says, is best. Not only will you learn more, but you won't commit plagiarism. You needn't use graphics, as a text/console output is doable.
Re: scrabble!
Programming
Software Development
17 Years Ago
by aaisha
i wud luv to do it myself. but i dunno where to start dis frm! give me an overall view of how to go about it...
Re: scrabble!
Programming
Software Development
17 Years Ago
by Narue
>i wud luv to do it myself. but i dunno where to start dis frm! Yea, don't do that anymore. Silly abbreviations make your posts harder to understand, especially for non-native English speakers.
Re: scrabble!
Programming
Software Development
17 Years Ago
by fatnickc
Presumably you've been taught how to do this, or you're pretending to your teacher that you can. If you can't do it, tell your teacher that you feel you haven't been taught enough.
Re: scrabble!
Programming
Software Development
17 Years Ago
by iamthwee
In short, go away and spend some time thinking about the ideas offered in this thread. When [B]you[/B] have got something come back here and we will be glad to answer [B]your[/B] questions about the code [B]you [/B]have written.
Re: scrabble!
Programming
Software Development
15 Years Ago
by ramroum
can i have the source code in c please or the link to website
Re: scrabble!
Programming
Software Development
14 Years Ago
by rhythm1576
can I have the source code in c its due today!!!!!!!!!
Re: scrabble!
Programming
Software Development
14 Years Ago
by Narue
[QUOTE=doiturslf;1534364]can I have the source code in c its due today!!!!!!!!![/QUOTE] I think you picked the wrong user name, my friend.
1
2
3
8
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC