C語言實驗——for迴圈列印圖形(迴圈結構)(sdut oj)
C語言實驗——for迴圈列印圖形(迴圈結構)
Time Limit: 1000MS Memory Limit: 65536KB
Problem Description
通過使用雙重for迴圈語句,列印下列圖形:
Input
Output
Example Input
Example Output
* *** ***** ******* ***** *** *
Hint
Author
參考程式碼
#include<stdio.h>
int main()
{
int n;
int i;
int temp;
n = 4;
for(i = 1; i <= n; i++)
{
for(temp = i; temp < n; temp++)
{
printf(" ");
}
for(temp = i; temp > 0; temp--)
{
printf("*");
}
for(temp = i - 1; temp >0; temp--)
{
printf("*");
}
printf("\n");
}
for(i = n - 1; i > 0; i--)
{
for(temp = i; temp < n; temp++)
{
printf(" ");
}
for(temp = i; temp > 0; temp--)
{
printf("*");
}
for(temp = i - 1; temp > 0; temp--)
{
printf("*");
}
printf("\n");
}
return 0;
}
相關文章
- C語言——迴圈結構(for迴圈,while迴圈,do-while迴圈)C語言While
- 【資料結構】迴圈佇列 C語言實現資料結構佇列C語言
- 11C++迴圈結構-for迴圈(1)C++
- 一文帶你掌握C語言的迴圈結構C語言
- 迴圈結構for
- 迴圈結構
- c語言中的三種迴圈語句結構C語言
- [iOS]C語言技術視訊-06-程式迴圈結構(for{})iOSC語言
- C++中的迴圈結構C++
- Go語言流程控制之迴圈結構篇Go
- C語言程式設計學習中while迴圈和do……while迴圈C語言程式設計While
- 05迴圈結構
- py迴圈結構
- 迴圈結構程式設計 實驗題目程式設計
- 單向迴圈連結串列介面設計(C語言)C語言
- 實驗6迴圈結構程式設計(for語句的應用)程式設計
- 趣味練習:用迴圈語句做出圖形
- C語言資料結構:雙向迴圈連結串列的增刪操作C語言資料結構
- C語言資料結構:單向迴圈連結串列的增刪操作C語言資料結構
- C#程式設計基礎第七課:C#中的基本迴圈語句:while迴圈、do-while迴圈、for迴圈、foreach迴圈的使用C#程式設計While
- C#快速入門教程(14)—— 迴圈語句結構C#
- 用Java中for迴圈語句列印菱形Java
- Python迴圈結構用法Python
- C語言-for迴圈之窮舉法練習C語言
- C語言學習【3】——判斷與迴圈C語言
- 實驗2C語言分支與迴圈基礎應用程式設計C語言程式設計
- 實驗2_C語言分支與迴圈基礎應用程式設計C語言程式設計
- 實驗2 c語言分支與迴圈基礎應用程式設計1C語言程式設計
- 實驗2 C語言分支與迴圈基礎應用程式設計-1C語言程式設計
- python分支結構與迴圈結構Python
- 4.Python——迴圈結構Python
- 迴圈結構程式設計程式設計
- php分支和迴圈結構PHP
- Java語言程式設計—迴圈語句Java程式設計
- for 迴圈與 while 迴圈While
- while迴圈 case迴圈While
- [Java手撕]迴圈列印ABCJava
- 鴻蒙開發TypeScript語言:【迴圈】鴻蒙TypeScript
- python04: while迴圈語句 break continue for in 迴圈PythonWhile