1 00:00:00,820 --> 00:00:04,240 There is one other key word that you can use in full loop. 2 00:00:04,570 --> 00:00:11,680 In many cases, your phone will have many lines of code, and at some point you may decide that the 3 00:00:11,680 --> 00:00:17,380 current loop has completed and you want to start the next loop, or more specifically, execute the 4 00:00:17,380 --> 00:00:20,170 loop expression and then test the condition. 5 00:00:20,200 --> 00:00:22,870 So to do this, you can call the continue. 6 00:00:22,900 --> 00:00:24,250 Continue. 7 00:00:24,430 --> 00:00:25,460 Keyword here. 8 00:00:25,480 --> 00:00:27,400 So let's create another loop here. 9 00:00:27,430 --> 00:00:36,220 So for float my var here zero point F and. 10 00:00:37,470 --> 00:00:38,590 My wife. 11 00:00:38,820 --> 00:00:42,720 My car is less than 10.4 by float. 12 00:00:44,160 --> 00:00:47,850 Uh, then increment my var by one. 13 00:00:49,410 --> 00:00:50,850 And STD. 14 00:00:52,420 --> 00:00:58,690 Or we don't like this city because we use the namespace here and that's why I'm going to write C out. 15 00:01:01,120 --> 00:01:03,430 My wife and. 16 00:01:04,700 --> 00:01:05,630 If here. 17 00:01:05,660 --> 00:01:12,950 If if my var var equals to zero then just to. 18 00:01:14,130 --> 00:01:15,100 Print the new line. 19 00:01:16,830 --> 00:01:21,210 See out and line here and continue. 20 00:01:23,330 --> 00:01:25,150 And then see out. 21 00:01:25,190 --> 00:01:25,820 We're. 22 00:01:32,410 --> 00:01:36,310 My var here and and line. 23 00:01:39,440 --> 00:01:40,430 This is our example. 24 00:01:40,700 --> 00:01:45,740 So in this code, we print this reciprocal of the numbers 0 to 9. 25 00:01:46,160 --> 00:01:53,240 If zero point F, as you know, the zero point F is a four byte floating point literal. 26 00:01:53,270 --> 00:01:58,340 So the first line in the four loop prints the loop variable here. 27 00:01:58,880 --> 00:02:03,500 And the next line checks to see if the variable is equal to zero. 28 00:02:03,530 --> 00:02:08,210 So if it is, it prints a new line and continuous here. 29 00:02:09,460 --> 00:02:14,320 That is is the last line in the four loop is not executed here. 30 00:02:14,320 --> 00:02:21,250 So the reason is that the last line printer is C so and it would be an error to divide any number by 31 00:02:21,250 --> 00:02:22,030 zero here. 32 00:02:22,030 --> 00:02:23,740 Let's try it out. 33 00:02:25,620 --> 00:02:26,100 We're.