輸入一個高度h,輸出一個高為h,上底邊為h的梯形。
演算法筆記習題3.3
問題 A: 輸出梯形
題目描述
輸入
一個整數h(1<=h<=1000)。
輸出
h所對應的梯形。
樣例輸入
5
樣例輸出
*****
*******
*********
***********
*************
#include <stdio.h>
char a[1000][1000];
int main()
{
int h;
while (scanf("%d",&h) != EOF)
{
for(int i=0;i<h;i++)
{
for(int j=0;j<3*h-2;j++)//3h-2為梯形下底
{
a[i][j]='*';
}
}
for(int i=0;i<h-1;i++)
{
for(int j=0;j<2*h-2-2*i;j++)
{
a[i][j]=' ';
}
}
for(int i=0;i<h;i++)
{
for(int j=0;j<3*h-2;j++)
{
printf("%c",a[i][j]);
}
printf("\n");
}
}
return 0;
}
問題 B: Hello World for U
題目描述
Given any string of N (>=5) characters, you are asked to form the characters into the shape of U. For example, "helloworld" can be printed as:
h d
e l
l r
lowo
That is, the characters must be printed in the original order, starting top-down from the left vertical line with n1 characters, then left to right along the bottom line with n2 characters, and finally bottom-up along the vertical line with n3 characters. And more, we would like U to be as squared as possible -- that is, it must be satisfied that n1 = n3 = max { k| k <= n2 for all 3 <= n2 <= N } with n1 + n2 + n3 - 2 = N.
輸入
Each input file contains one test case. Each case contains one string with no less than 5 and no more than 80 characters in a line. The string contains no white space.
輸出
For each test case, print the input string in the shape of U as specified in the description.
樣例輸入
helloworld!
樣例輸出
h !
e d
l l
lowor
#include <stdio.h>
#include <string.h>
int main()
{
char str[81],a[50][50];;
int n,col,row,count;
while(scanf("%s",&str) != EOF)
{
memset(a,' ',sizeof(a));
count=0;
n=strlen(str) + 2;
row=n/3;//行
col=n/3 + n%3;//列
for(int i=0;i<row;i++)
{
a[i][0]=str[count++];
}
for(int i=1;i<=col-2;i++)
{
a[row-1][i]=str[count++];
}
for(int i=row-1;i>=0;i--)
{
a[i][col-1]=str[count++];
}
for(int i=0;i<row;i++)
{
for(int j=0;j<col;j++)
{
printf("%c",a[i][j]);
}
if(i != row-1) printf("\n");
}
}
return 0;
}
問題 C: 等腰梯形
請輸入高度h,輸入一個高為h,上底邊長為h 的等腰梯形(例如h=4,圖形如下)。
****
******
********
**********
輸入
輸入第一行表示樣例數m,接下來m行每行一個整數h,h不超過10。
輸出
對應於m個case輸出要求的等腰梯形。
樣例輸入
1
4
樣例輸出
****
******
********
**********
#include <stdio.h>
int main()
{
int m,h;
scanf("%d",&m);
while(m--)
{
scanf("%d",&h);
for(int i=0;i<h;i++)
{
for(int j=0;j<h-1-i;j++)
{
printf(" ");
}
for(int k=0;k<h+2*i;k++)
{
printf("*");
}
printf("\n");
}
}
return 0;
}
問題 D: 沙漏圖形
題目描述
輸入樣例:
3
輸出樣例:
* * * * * * * * * * *
#include <stdio.h>
int main()
{
int h;
while(scanf("%d",&h) != EOF)
{
for(int i=0;i<h;i++)
{
for(int j=0;j<i;j++)
{
printf(" ");
}
for(int j=0;j<h-i;j++)
{
printf("* ");
}
printf("\n");
}
for(int i=1;i<h;i++)
{
for(int j=0;j<h-1-i;j++)
{
printf(" ");
}
for(int j=0;j<i+1;j++)
{
printf("* ");
}
printf("\n");
}
}
return 0;
}
相關文章
- 演算法筆記習題3.5演算法筆記
- 演算法筆記習題3.4演算法筆記
- Quick-3.3 開發筆記UI筆記
- 數學建模習題3.3
- 【演算法學習筆記】生成樹問題探究演算法筆記
- 演算法學習筆記演算法筆記
- Tarjan 演算法學習筆記演算法筆記
- Floyd演算法學習筆記演算法筆記
- LMF演算法學習筆記演算法筆記
- swift演算法練習筆記Swift演算法筆記
- 匈牙利演算法學習筆記演算法筆記
- 演算法學習筆記:Kosaraju演算法演算法筆記
- 機器學習演算法學習筆記機器學習演算法筆記
- 莫隊演算法學習筆記演算法筆記
- 演算法學習筆記(3.1): ST演算法演算法筆記
- [PyTorch 學習筆記] 3.3 池化層、線性層和啟用函式層PyTorch筆記函式
- [演算法學習筆記] 並查集演算法筆記並查集
- 演算法學習筆記:2-SAT演算法筆記
- 機器學習筆記(KNN演算法)機器學習筆記KNN演算法
- 強化學習演算法筆記之【DDPG演算法】強化學習演算法筆記
- 強化學習筆記之【SAC演算法】強化學習筆記演算法
- [演算法學習筆記] 差分約束演算法筆記
- 演算法學習筆記(16):Link Cut Tree演算法筆記
- 演算法學習筆記(23):杜教篩演算法筆記
- 【演算法學習筆記】概率與期望DP演算法筆記
- 統計學習方法筆記-EM演算法筆記演算法
- python機器學習筆記:EM演算法Python機器學習筆記演算法
- 【演算法學習筆記】篩法(演算法翻譯類)演算法筆記
- 機器學習演算法:Logistic迴歸學習筆記機器學習演算法筆記
- 3.3 編碼/解碼演算法演算法
- KuonjiCat的演算法學習筆記:反悔貪心演算法筆記
- YU_C++演算法學習筆記 · 列舉C++演算法筆記
- 小林coding學習筆記(程序排程演算法)筆記演算法
- 演算法學習筆記(40): 具體數學演算法筆記
- 「學習筆記」SPFA 演算法的最佳化筆記演算法
- 演算法學習筆記(5): 最近公共祖先(LCA)演算法筆記
- 演算法學習筆記(2): 逆元及其應用演算法筆記
- 機器學習筆記(1): 梯度下降演算法機器學習筆記梯度演算法