Blogger Information
Blog 55
fans 0
comment 1
visits 42159
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
镂空菱形
旺小舞的博客
Original
745 people have browsed it

QQ截图20180317153934.jpg


实例

<?php
// 定义:$n总层数	$i当前层数	$j空格		$k星号
	$n=4;
	//空心镂空三角形
	for ($i=1;$i<=$n;$i++){
		for($j=1;$j<=$n-$i;$j++){
			echo ' ';
		}
		for ($k=1;$k<=$i*2-1;$k++){
			if($i==1){
				echo "*";
			}else{	
				if($k==1||$k==$i*2-1){
					echo '*';
				}else{
				echo " ";
				}
			}

		}
		echo '<br/>';
	}
	//倒转三角形
	for($i=$n;$i>0;$i--){
		for($j=1;$j<=$n-$i;$j++){
			echo " ";
		}
		for($k=1;$k<=$i*2-1;$k++){
			if($i==1){
				echo "*";
			}else{
				if($k==1||$k==$i*2-1){
					echo '*';
				}else{
				echo " ";
				}
			}
			
		}
		
		echo "<br/>";
	}

?>

运行实例 »

点击 "运行实例" 按钮查看在线实例


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post