A simple loop made difficult WTH


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting A simple loop made difficult WTH
# 1  
Old 05-23-2012
A simple loop made difficult WTH

Can anyone assit me in completing this simple looping problem

allow the user to enter as many number as they want by using a loop. The program will keep asking the user for additional numbers until the user enters 9999. Once the user enters 9999, exit the loop and display a message telling them which number they entered was the largest of all of their entries. The number 9999 should only be used to exit the loop and should not be used as one of the entries to determine the largest number. For example, if the user enters the numbers 1, 29, 354, 231, 9999, the output should say "The largest number you entered was 354".
# 2  
Old 05-23-2012
Code:
#!/bin/bash

largest=0

while true
do
    read -p "Enter a number (9999 to exit): " input
    (( input == 9999 )) && break
    (( input > largest )) && largest=$input
done

echo "Largest number entered was: $largest"

# 3  
Old 05-24-2012
Thank you so much for that fast response...I am going to try it right now and see the results. I appreciate your help immensely
# 4  
Old 05-29-2012
I followed this but I am still having an issue I keep getting this message
Enter a number (9999 to exit): I then enter my numbers 1,26,78,98,56,78
I get the response
Largest number entered was: 1,26,78,98,56,78
Can someone please tell me what I doing incorrectly?
Thanking you in advance
# 5  
Old 05-29-2012
When it says "Enter a number (9999 to exit): ", you enter each number in a line, i.e., type a number and hit the return key (Enter) before entering next number.
# 6  
Old 05-30-2012
your problem is that you putting the numbers in all at once and your adding commas.
Try doing:
56 (enter)
78 (enter)
44 (enter)
99 (enter)
100 (enter)
Then 9999 (enter) and you will get 100 is the largest number
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

awk related question (for loop) difficult scenario

VARA='hello|welcome|gone|fantastic|superb|nicecar' if VARA contains a pipe "|", i want the contents of VARA to be tranformed to: VARA="(hello) (welcome) (gone) (fantastic) (superb) (nicecar)" so that, when i echo the contents of $VARA like this: echo "$VARA" or like this: print... (8 Replies)
Discussion started by: SkySmart
8 Replies

2. Shell Programming and Scripting

Simple loop using for

Dear experts, I am writing a bash script. At some point of the program I need to have 'for' loop. For simplicity I tried with some other simple code. The format of the loop is given below. k=51 m=55 for j in {$k..$m};do w=$(($j+2)) z=$(($j+9)) echo "$w, $z" done But my... (4 Replies)
Discussion started by: vjramana
4 Replies

3. Shell Programming and Scripting

a simple loop

Does any body can help me with a loop in this example? if then if then runner=$(grep "$1" "$2") runne=$(grep "$1" "$3") run=$(grep "$1" "$4") fi fi # # Message on screen... (3 Replies)
Discussion started by: bartsimpsong
3 Replies

4. UNIX for Dummies Questions & Answers

Simple loop

I need to chmod a bunch of files with a specific extension in one directory. If I understand correctly first I would run ls command like this ls -R | grep .mp3 > /tmp/list once I have the output file I should be able to run a loop to chmod all the files in the list created. This is where... (5 Replies)
Discussion started by: eugenes18t
5 Replies

5. Shell Programming and Scripting

Simple using For loop

Hi expert, I'm using csh Code: #!/bin/csh set x = 0 set number = `awk '{array=$0} END {print array;}'` i want to use for loop to store data to $number repeatly untill x = 23 How to use c shell for loop? (2 Replies)
Discussion started by: vincyoxy
2 Replies

6. Shell Programming and Scripting

Simple for loop question

Hello I am a beginner of shell scripting and i am having trouble to do a for loop. I want a for loop to do stuff 3 times. i.e. in visual basic i do this for (counter = 0; counter < 3; counter++) on my shell script i have something like this at the moment ... (7 Replies)
Discussion started by: arex876
7 Replies

7. Shell Programming and Scripting

A simple (?) loop

I have what I believe is a simple programming question. I have a text file that looks like: mol 1 G:\stereo01.hin block text ... ... ... endmol 1 However, I would like a file that repeats this entire block of text several times over. The lines of text in the middle remain the same for each... (2 Replies)
Discussion started by: red baron
2 Replies

8. Shell Programming and Scripting

simple while loop

i have a script called file2 #!/bin/ksh i=0 while do echo $i >> result.txt i=`expr $i + 1` done echo "***********************" >> result ------------------------------------------------------------------- (10 Replies)
Discussion started by: ali560045
10 Replies

9. Shell Programming and Scripting

simple for loop

i have the following process running in background: when i give "ps -lef" ------------------------------------------------------------------------ user2 user1 user1 user3 user1 user4 user5 user4 user3 user4 user2 user1 user1 user3 user1 user4 (3 Replies)
Discussion started by: ali560045
3 Replies

10. Shell Programming and Scripting

a simple while loop

Hallo everyone I might just be being dumb, but I am using the BASH shell and cannot get the following script to work: x=0 while do echo $x x=´echo "$x + 1" | bc´ done Can anybody help me out. I am just get a repeating output saying: bc: command not found 0 + 1: command not... (5 Replies)
Discussion started by: syno
5 Replies
Login or Register to Ask a Question