Advertisement
MrAlex

Untitled

Sep 13th, 2013
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1. //מצב ראשון
  2. for(int i = 0;i < 10; i++)
  3. {
  4.         if(somthing)
  5.                 Console.WriteLine("bla");
  6.         else
  7.              {   i = 11; continue;  }
  8. }
  9.  
  10.  
  11. // מצב שני
  12. bool a = true;
  13. for(int i = 0;i < 10 && a; i++)
  14. {
  15.         if(somthing)
  16.                 Console.WriteLine("bla");
  17.         else
  18.             {    a = false; continue;}
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement