Transcription of Arrays in C/C++
{{id}} {{{paragraph}}}
Osethatwewantaprogramthatcanreadinalisto fnumb ersandsortthatlist,or econcreteab outit,supp osewehave15numb erstoreadinfroma ers,butthenhowcouldweusealo optocomparethevariablestoeachother? ,sothatwecouldwritesomethinglikemax = 0;for ( i = 0; i < 15 ; i++ ) {if ( number_i > max )max = number_i ;} ++strings:ifwedeclarestring str;thenwecanwritealo oplikefor ( int i = 0; i < (); i++ )cout < < str[i] < < - ;inwhicheachindividualcharacterinstrisaccessedusingthesubscriptop erator[]. ,indexedbysubscripts,allofthesametyp ,itwouldlo oklikethis:number: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 Eachelementcouldb eaccessedusingthesubscriptop erator,asinnumber[1]ornumber[7],andwecouldwritealo oplikemax = 0;for ( i = 0; i < 15 ; i++ ) {if ( number_i > max)}
code needs to count how many aluesv are written into the arra,y and stop if it exceeds the array size, or if it runs out of data rst. The while loop has two conditions to check in this case: int list [100]; int temp; length = 0; cin >> temp; // try to read to force eof to become true if the file is empty while ( length < 100 && ! cin . eof )
Domain:
Source:
Link to this page:
Please notify us if you found a problem with this document:
{{id}} {{{paragraph}}}