在C语言中编写一个程序来打印实心和空心菱形图案

2023年 8月 29日 45.2k 0

程序说明

打印如下所示的实心和空心菱形图案

在C语言中编写一个程序来打印实心和空心菱形图案

算法

Accept the Number of Rows for Hollow Rhombus from the User
Create a Hollow Rhombus containing the same number of Rows specified by the User.
Print the first row containing the number of stars same as the number of rows.
Print the second row containing the first and last star as show in the output and leave the spaces between first and the last star.
Do the same till you reach the last Row.
Print the last row containing the number of stars same as the number of rows.

For Solid Rhombus −

Accept the Number of Rows for Solid Rhombus from the User
Create a Solid Rhombus containing the same number of Rows specified by the User.
Print the first row containing the number of stars same as the number of rows.
Do the same till you reach the last Row.

登录后复制

Example

的中文翻译为:

示例

/* Program to print Hollow and Solid Rhombus star pattern */
#include
int main() {
int r, c, rows; //Hollow Rhombus
int r1,c1, rows1; //Solid Rhombus
clrscr();
printf("Enter the Number of rows for Hollow Rhombus Pattern: ");
scanf("%d", &rows);
printf("

");
for(r=1; r

相关文章

JavaScript2024新功能:Object.groupBy、正则表达式v标志
PHP trim 函数对多字节字符的使用和限制
新函数 json_validate() 、randomizer 类扩展…20 个PHP 8.3 新特性全面解析
使用HTMX为WordPress增效:如何在不使用复杂框架的情况下增强平台功能
为React 19做准备:WordPress 6.6用户指南
如何删除WordPress中的所有评论

发布评论