
-----------------------------------
nelsonkkyy
Thu Nov 18, 2010 2:29 pm

Encryption program!need help
-----------------------------------
I have done most of the code but i still have to make a exit command..

this is all i have:

import java.util.*;
import java.io.*;

public class Encryption_chipers

{


    private static BufferedReader stdin = new BufferedReader (new InputStreamReader (System.in));

    public static void main (String

I need to have a out out called "Type 'stop' to quit the program"
and then make the whole thing exit..
TKSS

-----------------------------------
Barbarrosa
Fri Nov 19, 2010 12:09 am

Re: Encryption program!need help
-----------------------------------
The exit command that you have is within 2 loops, not one. You should put the do-while at the end around everything and remove the for loop.

And please use [syntax="java"] [/syntax] instead of a quote block in the future.
