C++ program to print falling star triangle pattern
Make it easier to understand circular ideas by printing a star design. Asterisk is used for Various star patterns form full or hollow triangle or rhombus forms. at this In this article, we will show how to create a center-aligned descending triangle in C.
The following table will contain the logic we created to print the stars. The following table can Help us understand.
grammar
* * * * * * * * * * * * * * * * * * * * * * * * * * * *
7 lines are shown here. For each row i, there are (n – i 1) stars. However, every The rows have some padding, and here the padding is decreasing with each row. And stars also have Constant filling. We can do this by printing "*" (asterisk followed by space) Instead of just printing "*". The table shows the number of spaces and stars and their relationship the value of i.
Line number (i) | Number of stars (j) | Space(k) | ||
---|---|---|---|---|
1 | The Chinese translation of7 | is:7 | 0 | |
2 | The Chinese translation of6 | is:6 | 1 | |
3 | 5 | 2 | ||
4 | is:4 | The translation of4 | is:4 | 3 |
5 | 3 | 4 | ||
6 | is:6 | 2 | 5 | |
7 | is:7 | 1 | 6 |
Here, the number of stars in each row i is (n – i 1). The number of spaces is as follows (i – 1). let us Check out Algorithms to understand this concept.
algorithm
- Read the number of lines as input n
- For i from 1 to n, execute
- For k ranging from 1 to (i - 1), execute
- Display spaces (' ')
- Finish
- For j from 1 to (n - i 1), do the following
- Display an asterisk followed by a space "*"
- Finish
- Move the cursor to the next line
- Finish
We are testing this by replacing spaces with dots (.) before each line. because of U.S Online compilers sometimes truncate lines and eliminate spaces before and after each line.
Example
#include <iostream> using namespace std; void solve( int n ){ int i, j, k; for( i = 1; i <= n; i++ ) { for( k = 1; k <= (i - 1); k++ ) { cout << "."; } for( j = 1; j <= (n - i + 1); j++ ) { cout << "* "; } cout << endl; } } int main(){ int n = 10; cout << "Downward Star Pattern using " << n << " number of lines:" << endl; solve( n ); }
Output
Downward Star Pattern using 10 number of lines: * * * * * * * * * * .* * * * * * * * * ..* * * * * * * * ...* * * * * * * ....* * * * * * .....* * * * * ......* * * * .......* * * ........* * .........*
Output (when n = 18)
Downward Star Pattern using 18 number of lines: * * * * * * * * * * * * * * * * * * .* * * * * * * * * * * * * * * * * ..* * * * * * * * * * * * * * * * ...* * * * * * * * * * * * * * * ....* * * * * * * * * * * * * * .....* * * * * * * * * * * * * ......* * * * * * * * * * * * .......* * * * * * * * * * * ........* * * * * * * * * * .........* * * * * * * * * ..........* * * * * * * * ...........* * * * * * * ............* * * * * * .............* * * * * ..............* * * * ...............* * * ................* * .................*
in conclusion
We designed programs to print star patterns to learn almost any programming language
Nested for loop syntax. In this article, we have covered how to print a center-aligned Descending triangle pattern. Asterisks are placed to print triangles, spaces are used Align the triangle to the center (due to some limitations of the online compiler, we print dots instead of spaces). You can test them locally by putting a gap in between Use dots instead of spaces to indicate gaps). You can test them locally, just put a gap in between sentence. Also prove that the i-th row of stars and empty space Can be found using tabular techniques. Using this concept, we can easily modify A way for formulas to display additional patterns. Making simple changes from the table can help show Different triangle patterns. Sometimes removing the space will make the triangle left aligned.The above is the detailed content of C++ program to print falling star triangle pattern. For more information, please follow other related articles on the PHP Chinese website!

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

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



If when opening a file that needs to be printed, we will find that the table frame line has disappeared for some reason in the print preview. When encountering such a situation, we must deal with it in time. If this also appears in your print file If you have questions like this, then join the editor to learn the following course: What should I do if the frame line disappears when printing a table in Excel? 1. Open a file that needs to be printed, as shown in the figure below. 2. Select all required content areas, as shown in the figure below. 3. Right-click the mouse and select the "Format Cells" option, as shown in the figure below. 4. Click the “Border” option at the top of the window, as shown in the figure below. 5. Select the thin solid line pattern in the line style on the left, as shown in the figure below. 6. Select "Outer Border"

This article will introduce how to solve the problem of insufficient memory or disk space to repage or print the document in Microsoft Word. This error usually occurs when users try to print a Word document. If you encounter a similar error, please refer to the suggestions provided in this article to resolve it. Insufficient memory or disk space to repage or print this document Word error How to resolve the Microsoft Word printing error "There is not enough memory or disk space to repage or print the document." Update Microsoft Office Close memory-hogging applications Change your default printer Start Word in safe mode Rename the NorMal.dotm file Save the Word file as another

In this digital world, the need for printed pages has not disappeared. While you might think it's more convenient to save content on your computer and send it directly to the printer, you can do the same thing on your iPhone. With your iPhone's camera, you can take a photo or document, and you can also store the file directly for printing at any time. This way you can quickly and easily materialize the information you need and save it in a paper document. Whether at work or in daily life, iPhone provides you with a portable printing solution. The following post will help you understand everything you need to know if you wish to use your iPhone to print pages on a printer. Print from iPhone: Ask Apple

If you are unable to print using the Snipping Tool in Windows 11/10, it may be caused by corrupted system files or driver issues. This article will provide you with solutions to this problem. Can't print from Snipping Tool in Windows 11/10 If you can't print from Snipping Tool in Windows 11/10, use these fixes: Restart PC Printer Clear print queue Update printer and graphics driver Fix or reset Snipping Tool Run SFC and DISM Scan uses PowerShell commands to uninstall and reinstall Snipping Tool. let us start. 1] Restart your PC and printer Restarting your PC and printer helps eliminate temporary glitches

Printed a large file by mistake? Need to stop or pause printing to save ink and paper? There are many situations where you may need to pause an ongoing print job on your Windows 11 device. How to pause printing in Windows 11? In Windows 11, pausing printing will pause the print job, but it will not cancel the print task. This provides users with more flexible control. There are three ways to do this: Pause printing using the taskbar Pausing printing using Windows Settings Printing using the control panel Now, let’s look at these in detail. 1] Print using taskbar Right-click the print queue notification on the taskbar. Click to open all active printer options. Here, right-click on the print job and select Pause All

If you find that blank pages appear when printing a mail merge document using Word, this article will help you. Mail merge is a convenient feature that allows you to easily create personalized documents and send them to multiple recipients. In Microsoft Word, the mail merge feature is highly regarded because it helps users save time manually copying the same content for each recipient. In order to print the mail merge document, you can go to the Mailings tab. But some Word users have reported that when trying to print a mail merge document, the printer prints a blank page or doesn't print at all. This may be due to incorrect formatting or printer settings. Try checking the document and printer settings and make sure to preview the document before printing to ensure the content is correct. if

Outlook is one of the most feature-rich email clients and has become an indispensable tool for professional communication. One of the challenges is printing all attachments at the same time in Outlook. Usually you need to download attachments one by one before you can print them, but if you want to print everything at once, this is the problem most people encounter. How to Print All Attachments in Outlook Although most of the information is maintained online in the Outlook application, there are times when you need to print out the information for backup. Must sign documents in person to satisfy legal requirements such as contracts, government forms, or homework assignments. There are several methods that allow you to print all attachments in Outlook with one click instead of printing them one by one. Let's look at each one in detail. Outloo

How to implement printing functionality in Vue requires specific code examples Vue.js is a progressive JavaScript framework for building user interfaces. In many web applications, printing functionality is a very important part. This article will introduce how to implement the printing function in Vue and provide specific code examples. To implement the printing function in Vue, you must first clarify what the printed content is. Usually, we will put the content to be printed in an HTML element, such as a div. Then, via Jav
