Forum: Java Nov 30th, 2004 |
| Replies: 7 Views: 4,140 Its ok guys, i got it. it was returning a missing return statement because i had it returning the values from within a for loop.
I just changed the return to a char outside the loop.
Thanx... |
Forum: Java Nov 30th, 2004 |
| Replies: 7 Views: 4,140 ok im returning one single char, therefore their should be no problem. But i am still getting the missing return statement message. |
Forum: Java Nov 26th, 2004 |
| Replies: 7 Views: 4,140 Is their any way i could return a single char to the calling program? :o |
Forum: Java Nov 23rd, 2004 |
| Replies: 7 Views: 4,140 Im writing an encription program and it keeps saying their are 2 missing return statements :cry: , any ideas?
public class EncryptedMessage
{
public static final int NO_OF_LETTERS = 26;... |