Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
sentinel
- Page 1
Sentinel help
Programming
Software Development
12 Years Ago
by applejax77
… suppose to add all the input numbers except for the
sentinel
which is -1. What am i doing wrong? import java…
Sentinel & Count Help
Programming
Software Development
13 Years Ago
by HungMob
…iomanip> int main() { int count = 1; int
sentinel
= 0; double The_Sum; double Positive_Integers; ifstream datain ("…lt;<endl; datain >> Positive_Integers; while (Positive_Integers !=
sentinel
) { for (count = 1; count<=Positive_Integers; count ++)…
sentinel controlled while loop
Programming
Software Development
19 Years Ago
by dal4488
… m followed by a GPA. I have to use a
sentinel
controlled while loop, but I'm having a heck of…;stdlib.h> using namespace std; int main() { const int
sentinel
= -999; ifstream inFile; string grades; int num; int sum = 0…;Line 1: Enter the numbers ending with " <<
sentinel
<< endl; cin >> num; while (num…
sentinel method - While/For loop
Programming
Software Development
16 Years Ago
by mikev9359
…I asked "The directions say to use "
sentinel
method". I went through Ch.05-07 and …it is or what it does." -Response:Ok,
sentinel
method (or trailer method) is when instead of asking…/difference between If & WHILE, especially with the term
SENTINEL
thrown in. import javax.swing.*; import java.text.*;// enables…
Re: Sentinel & Count Help
Programming
Software Development
13 Years Ago
by Narue
… number was already read to determine if it was a
sentinel
in the outer loop. So you're basically discarding the… loop like so: [code] datain >> Positive_Integers; while (Positive_Integers !=
sentinel
) { cout<<count<<setw(4)<<…
Re: Sentinel & Count Help
Programming
Software Development
13 Years Ago
by HungMob
…lt;iomanip> int main() { int count = 1; int
sentinel
= 0; double The_Sum; double Positive_Integers; ifstream datain ("Input…quot;<<endl; datain >> Positive_Integers; while (Positive_Integers !=
sentinel
) { for (count = 1; count<=Positive_Integers; count ++) {…
Re: Sentinel & Count Help
Programming
Software Development
13 Years Ago
by HungMob
… why the 2 got deleted and why it printed the
sentinel
, but now I don't have a count for the…
Re: Sentinel & Count Help
Programming
Software Development
13 Years Ago
by Narue
Increment count in the loop: [code] while (Positive_Integers !=
sentinel
) { cout<<count++<<setw(4)<<&…
Re: Sentinel Values and JOptionPane
Programming
Software Development
16 Years Ago
by jasimp
…(String[] args) { //creates the year varible and the
sentinel
value int year,
sentinel
=8; //creates a gregorian calender to use the year… GregorianCalendar(); //this while loop will run until
sentinel
= 0 or a break; is called while(
sentinel
!= 0){ // gets the year from the…
Re: Sentinel Values and JOptionPane
Programming
Software Development
16 Years Ago
by NotThereAnymore
… both of your suggestions. The program is almost working. The
sentinel
value closes the window and prints the output as it… value is evaluated first, then an incorrect one (or the
sentinel
value), the result is always true. However, when an incorrect…
Sentinel control
Programming
Software Development
19 Years Ago
by cdt1983
Hi- I want to use a
sentinel
value (-1) to end the loop of a program after the user has entered all of their data. However, how can I output inbetween each instance of the loop? Then, at the end, how can I will have an average of all entered data? Thanks
Sentinel Values and JOptionPane
Programming
Software Development
16 Years Ago
by NotThereAnymore
… the user through JOptionPane. I am suppose to use a
sentinel
value (q or Q) to tell the loop to stop…
Re: Sentinel Values and JOptionPane
Programming
Software Development
16 Years Ago
by NotThereAnymore
…] However, when I type an integer (ex. 90), then the
sentinel
value (Q or q), the loop does not break. It…
Sentinel loop help
Programming
Software Development
15 Years Ago
by madmaxx350
How do you exit a
sentinel
controlled loop forcefully ? [code]while (finalstar != word && ct1 &…
Sentinel Controlled loop problem
Programming
Software Development
15 Years Ago
by shroomiin
… initialize tank to 1 Int miles Int gallons While not
sentinel
value Prompt the user to enter the miles driven Prompt…
Re: Sentinel control
Programming
Software Development
15 Years Ago
by ichihollow
… objective is to use an infinite loop terminated by a
sentinel
value. then collect a minimum, maximum, and an average, of…
Sentinel Loop
Programming
Software Development
13 Years Ago
by Desi Boy
… listed below can anyone please help with this. Write a
sentinel
loop that will sum all positive integer values entered; use…
Re: Sentinel help
Programming
Software Development
12 Years Ago
by Philippe.Lahaie
You add the number you enter to the total before the while checks if its value is -1. you should start number at 0 like you do for total, and switch both lines in your do-while, this way, on the first run through it will add 0 to the total. and on everyother pass its gonna add the last number before asking a new one. To be a little more logical, …
Re: Sentinel help
Programming
Software Development
12 Years Ago
by DavidKroukamp
well you dont need the do while statement, the while statement will do the job correctly-verifying the variable before executing, where as the do while verfiys the value at the end of each execution. also incorporate the 'number = console.nextInt()' into your while statement that should fix it :)
Re: Sentinel help
Programming
Software Development
12 Years Ago
by applejax77
Thanks!
Re: While Sentinel Loop Issue for a lower case to upper case char array converter
Programming
Software Development
13 Years Ago
by brendeg
… tried
SENTINEL
[2]="Q";,
SENTINEL
= "Q"; and
SENTINEL
'Q'; declaring
SENTINEL
as …char arrayInput[MAX]; void cStringToUpper (char[]); const char
SENTINEL
[2] = "Q"; char arrayOutput[MAX];…; //Print Converted Char Array } }while (arrayInput !=
SENTINEL
); cin.ignore(2); return 0; } void cStringToUpper (char…
C++ Help for a Beginner!!! Sentinel-Controlled While Loop
Programming
Software Development
14 Years Ago
by andimiami
… using a nested decision. A character q must be my
sentinel
. This is what I have so far, but it doesn… double a, b, c, r1, r2, descriminant; char q; char
SENTINEL
= q; cout << setiosflags (ios::fixed) << setiosflags…;< endl; cin >> a; // read a while (a!=
SENTINEL
) { if (a == 0) cout << "Zero Divide"…
Using sentinel with binary search tree
Programming
Software Development
12 Years Ago
by BoBok2002
…but with junk. The problem is with the
sentinel
in the while loop. I'm not sure… 14 && infile.good()) while (strcmp(Str,
sentinel
) != 0) But none of those are working. A sample…; int compVal; bool found; char
sentinel
[5]; int count = 0; infile >>
sentinel
>> Str; Parent = NULL…
Loop with inFile and Sentinel...help
Programming
Software Development
17 Years Ago
by cat8882
…import java.util.*; public class Grader { static final int
SENTINEL
= -1; public static void main(String[] args) throws… //receives information from file num = inFile.nextInt(); if (num !=
SENTINEL
) do { score = 0; num = inFile.nextInt(); score = score…
Java rookie needs help with sentinel while loop
Programming
Software Development
16 Years Ago
by dno117
…" );// prompt fName = input.nextLine(); // read employees name // loop until
sentinel
value read from user while ( fName != "stop" ) { System…would be GREATLY appreciated. Also any tips for setting the
sentinel
value would be great, as I haven't been …
Re: C++ Help for a Beginner!!! Sentinel-Controlled While Loop
Programming
Software Development
14 Years Ago
by Ancient Dragon
>> char q; >> char
SENTINEL
= q; The second line does nothing more than assign one … be in the memory at the time. If you want
SENTINEL
to represent when to exit the loop then assign it…
How to program calculator array to not include sentinel?
Programming
Software Development
3 Years Ago
by ekennedybills
…create a basic calculator using double value and
sentinel
. I cannot figure out how to get the…it still counts, lists, and even adds the
sentinel
number to the final result. I've tried …public static void main(String[] args) { { final int
SENTINEL
=-1; double priceFromUser=0; double total=0; double average=…
Re: Loop with inFile and Sentinel...help
Programming
Software Development
17 Years Ago
by peter_budo
For start, you declared
SENTINEL
to be a constant so it will never change [code]…static [COLOR="Red"]final[/COLOR] int
SENTINEL
= -1;[/code] Secondly, if I interpreted your statement correctly you… even if you remove [i]final[/i] from its declaration,
SENTINEL
stays as -1, because there are no changes to it…
Squares program: sentinel value and size of 0
Programming
Software Development
16 Years Ago
by vileoxidation
…'t figure out how to do the
sentinel
value. I tried adding [inlinecode]int
sentinel
= -1;[/inlinecode], and then using that at… instead of repeating size > 1, as [inlinecode]while (size !=
sentinel
);[/inlinecode], but that didn't work. I also tried using…
how do i use SENTINEL to make the escape condition for the do while loop???
Programming
Software Development
14 Years Ago
by samsons17
…} } char letter_box[10]; char answer; int main () { const int
SENTINEL
=-1; int i=0; do { cout<<"Enter…) :"; cin>>letter_box[i]; i++; }while ( !=
SENTINEL
); //how do i correct this???? printreverse(letter_box,i); system("…
1
2
3
17
Next
Last
Search
Search
Forum Categories
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
Forums
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
© 2024 DaniWeb® LLC