21 lines
		
	
	
		
			303 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			303 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| class Program {
 | |
| 
 | |
| 	public void main() {
 | |
| 		int $c = 4;
 | |
| 		for(int $a = 0; $a < 10; $a++) {
 | |
| 			for(int $b = 0; $b < 10; $b++) {
 | |
| 				int $c = 2;
 | |
| 				if($b == 2) {
 | |
| 					continue;
 | |
| 				}
 | |
| 				if($b == 6) {
 | |
| 					break;
 | |
| 				}
 | |
| 				print("Hello variables: $a $b $c\n");
 | |
| 			}
 | |
| 		}
 | |
| 		print("Variable \$c: $c\n");
 | |
| 	}
 | |
| 
 | |
| }
 |