answersLogoWhite

0

No- the outer loop has to be longer than the inner loop.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What are labels in Cpp and can you give some examples?

Labels are used to label the statements that follow for use with goto statements. Labels are user-defined names that follow standard naming conventions, starting in column 1 and ending with a colon (:). They are usually placed on a line of their own but must appear in the same function that contains the goto. Note that a label that has no statements following (the label is the last statement in the function), it must include a semi-colon (;) after the colon (an empty statement). Although many programmers frown upon the use of goto, it is really no different to using return, break or continue to interrupt the normal program flow within a function. However, it's fair to say goto statements are often used quite inappropriately, producing "spaghetti code" that is really quite difficult to follow. In many cases there will be a better alternative to using a goto, however the following example illustrates a correct usage for goto, breaking out of nested compound statements. The functions UseBreak() and UseGoto() both produce exactly the same results, but the goto version is easier to follow as the conditional expression only needs to be evaluated once. Evaluating one goto rather than two breaks is also more efficient. #include <iostream> using namespace std; void UseBreak() { cout<<"UseBreak() executing..."<<endl; int i, j; for(i=0;i<10;++i) { cout<<"Outer loop executing. i="<<i<<endl; for(j=0;j<2;j++) { cout<<"\tInner loop executing. j="<<j<<endl; if(i==3) break; // break out of inner loop. } if(i==3) break; // break out of outer loop. cout<<"\tInner loop finished."<<endl; } cout<<"Outer loop finished."<<endl<<endl; } void UseGoto() { cout<<"UseGoto() executing..."<<endl; int i, j; for(i=0;i<10;++i) { cout<<"Outer loop executing. i="<<i<<endl; for(j=0;j<2;j++) { cout<<"\tInner loop executing. j="<<j<<endl; if(i==3) goto stop; // jump out of both loops. } cout<<"\tInner loop finished."<<endl; } stop: cout<<"Outer loop finished."<<endl<<endl; } int main() { UseBreak(); UseGoto(); return(0); } Output: UseBreak() executing... Outer loop executing. i=0 Inner loop executing. j=0 Inner loop executing. j=1 Inner loop finished. Outer loop executing. i=1 Inner loop executing. j=0 Inner loop executing. j=1 Inner loop finished. Outer loop executing. i=2 Inner loop executing. j=0 Inner loop executing. j=1 Inner loop finished. Outer loop executing. i=3 Inner loop executing. j=0 Outer loop finished. UseGoto() executing... Outer loop executing. i=0 Inner loop executing. j=0 Inner loop executing. j=1 Inner loop finished. Outer loop executing. i=1 Inner loop executing. j=0 Inner loop executing. j=1 Inner loop finished. Outer loop executing. i=2 Inner loop executing. j=0 Inner loop executing. j=1 Inner loop finished. Outer loop executing. i=3 Inner loop executing. j=0 Outer loop finished.


Do the inner or outer planets have the longest rotation period?

The outer planets have longer rotation periods than the inner planets. For example, a day on Jupiter, an outer planet, is about 10 hours long, while a day on Earth, an inner planet, is about 24 hours long.


How do the orbits of the outer planets compare to the inner ones?

The outer planets take much more time and also travel longer to complete a whole orbit around the Sun, than the inner ones.


What four inner planets are larger than the outer planets?

The inner planets are smaller than the outer planets.


How does the outer mantle and the inner mantle differ?

the inner mantle is hotter than the outer mantle.


Is the outer circle of a track more distance than the inner circle?

The outer circle of a track is longer this is why the starting line is often set at an angle to the outside of the track.


Which of the outer planets has a surface more similar to the inner planets than to the outer planets?

Neptune has a surface more similar to the inner planets than to the other outer planets. It is primarily composed of rock and ice, similar to the composition of the inner planets, whereas the other outer planets are predominantly gas giants.


Is it outer core or inner core?

Both really the inner core is more hotter than the outer core


Is the distance between inner planets less than or greater than the distance between the outer planets?

The inner planets are closer together than the outer ones.


What is thicker inner or outer core?

The outer core is thicker than the inner core. The outer core is about 2,260 kilometers thick, while the inner core is approximately 1,220 kilometers thick.


Is Saturns inner ring faster than the outer ring?

Yes, the inner ring is smaller so it goes faster


What are the distances between planets greater between the inner or outer planets?

The inner planets are closer together than the outer planets are.