Two methods of php to realize the printing of hollow pyramid
<?php /* * *帮朋友做题,写了一个这个空心金字塔的代码。希望和大家交流一下,提出*宝贵建议. * */ //第一种实现方法 $n=20;//定义总函数 for($i=1;$i<=$n;$i++)//行数循环 { for($k=1;$k<=$n-$i;$k++)//循环打印出每行前面的空格 { echo " "; } //判断并打印出第一行与最后一行的'*' if(($i==1)||($i==$n)) { for($j=1;$j<=2*$i-1;$j++) { echo '*'; } echo'<br/>'; }else//循环打印出其他行的'*'与空格 { echo '*'; for($k=1;$k<=2*$i-3;$k++) { echo ' '; } echo '*'; echo '</br>'; } } //第二种实现空心金字塔(个人感觉代码繁琐,唉。) $n=20;//定义总函数 for($i=1;$i<=$n;$i++)//行数循环 { for($k=1;$k<=$n-$i;$k++)//循环打印出每行前面的空格 { echo ' '; } //循环打印出每一行前面空格后的'*' if($i==1)//第一行 { echo '*'; echo '</br>'; }else//其它行 {echo '*';} if(($i>=2)&&($i<=$n-1)) { //循环打印出第二行到第n-1行的样式 for($j=1;$j<=2*$i-3;$j++) { echo ' '; } echo '*'; echo '</br>'; }else if($i==$n) {//循环打印出最后一行的样式 for($m=1;$m<=2*$i-2;$m++)//2*$i-2是因为前面多打印一个'*' { echo "*"; } echo '</br>'; } } ?>


Copyright statement: This article is an original article by the blogger and may not be reproduced without the blogger's permission.
The above introduces the two methods of printing hollow pyramids in PHP, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Kernelsecuritycheckfailure (kernel check failure) is a relatively common type of stop code. However, no matter what the reason is, the blue screen error causes many users to be very distressed. Let this site carefully introduce 17 types to users. Solution. 17 solutions to kernel_security_check_failure blue screen Method 1: Remove all external devices When any external device you are using is incompatible with your version of Windows, the Kernelsecuritycheckfailure blue screen error may occur. To do this, you need to unplug all external devices before trying to restart your computer.

Can Win10 skype be uninstalled? This is a question that many users want to know, because many users find that this application is included in the default program on their computers, and they are worried that deleting it will affect the operation of the system. Let this website help users Let’s take a closer look at how to uninstall Skype for Business in Win10. How to uninstall Skype for Business in Win10 1. Click the Windows icon on the computer desktop, and then click the settings icon to enter. 2. Click "Apply". 3. Enter "Skype" in the search box and click to select the found result. 4. Click "Uninstall". 5

In today's era of rapid technological development, programming languages are springing up like mushrooms after a rain. One of the languages that has attracted much attention is the Go language, which is loved by many developers for its simplicity, efficiency, concurrency safety and other features. The Go language is known for its strong ecosystem with many excellent open source projects. This article will introduce five selected Go language open source projects and lead readers to explore the world of Go language open source projects. KubernetesKubernetes is an open source container orchestration engine for automated

"Go Language Development Essentials: 5 Popular Framework Recommendations" As a fast and efficient programming language, Go language is favored by more and more developers. In order to improve development efficiency and optimize code structure, many developers choose to use frameworks to quickly build applications. In the world of Go language, there are many excellent frameworks to choose from. This article will introduce 5 popular Go language frameworks and provide specific code examples to help readers better understand and use these frameworks. 1.GinGin is a lightweight web framework with fast

With the development of the Internet and the advancement of information technology, the era of big data has arrived, and fields such as data analysis and machine learning have also been widely used. In these fields, task scheduling is an inevitable problem. How to achieve efficient task scheduling is crucial to improving efficiency. In this article, we will introduce how to use Golang's web framework Echo framework to implement distributed task scheduling. 1. Introduction to the Echo framework Echo is a high-performance, scalable, lightweight GoWeb framework. It is based on HTTP

How to use for to find n factorial: 1. Use the "for (var i=1;i<=n;i++){}" statement to control the loop traversal range to "1~n"; 2. In the loop body, use "cj *=i" Multiply the numbers from 1 to n, and assign the product to the variable cj; 3. After the loop ends, the value of the variable cj is the factorial of n, and then output it.

php提交表单通过后,弹出的对话框怎样在当前页弹出php提交表单通过后,弹出的对话框怎样在当前页弹出而不是在空白页弹出?想实现这样的效果:而不是空白页弹出:------解决方案--------------------如果你的验证用PHP在后端,那么就用Ajax;仅供参考:HTML code

Laravel is a popular PHP framework that is highly scalable and efficient. It provides many powerful tools and libraries that allow developers to quickly build high-quality web applications. Among them, LaravelEcho and Pusher are two very important tools through which WebSockets communication can be easily implemented. This article will detail how to use these two tools in Laravel applications. What are WebSockets? WebSockets
