shell程式設計 編寫程式顯示下圖圖案。由輸入決定輸出多少行,下面是當行數為8時的情況

時間 2021-07-14 02:24:38

1樓:

用printf列印固定寬度的字串預設是右對齊的。

#!/bin/sh

read -p "input the line number: " row

for n in `seq $row`

dostr=""

for m in `seq $n`

dostr="$*"

done

printf "%$s\n" "$str"

done

2樓:匿名使用者

還是python簡單:

#!/usr/bin/python

width = input('please enter width:')

x = 1

y = width

while x <= width:

print ' '*(y-1)+'*'*xx += 1

y -= 1

3樓:被世界

有圖有真相

#!/bin/bash

read n

char=' '

i=1while [ $i -le $n ]doj=$i

while [ $j -lt $n ]

doecho -n "$char"

j=`expr $j + 1`

done

j=0while [ $j -lt $i ]doecho -n "*"

j=`expr $j + 1`

done

i=`expr $i + 1`

echo -e "\n"

done

linux命令 shell程式設計:從鍵盤輸入一個數,若大於0,則輸出該數;若小於或等於0,則輸出0值。程式怎麼寫

4樓:文化廚子

1、在shell程式設計中,輸入一個數可以通過read命令來完成。

2、大於0輸出該數,小於或等於0,輸出0值,可以藉助於if結構來判斷。

3、示例如下

//read從鍵盤讀取一個數儲存到變數i中//並同時輸出:“輸入一個數”的字元提示

read -p "輸入一個數:" i;

//如果使用者輸入的數i大於0就輸出i的值

if ((i > 0));then

echo $i;

//否則就直接用echo命令輸出0

else

echo 0;

fi //這裡if語句結束

4、執行效果如下:

5樓:匿名使用者

#!/bin/bash

echo "please input a number:"

#鍵盤讀取賦值給變數num

read num

#判斷num的值是否為數字,條件否則直接退出expr $num + 0 1>/dev/null 2>&1if [ $? -ne 0 ]

then

echo "$ is not a number!"

exit 0

fi#判斷變數num的值是否大於0

if [ "$num" -gt 0 ]

then

echo $num

else

echo 0fi

6樓:匿名使用者

#! /bin/bash

read num

#判斷是否是數字

if [ `echo $num | grep - p '^-?\d+'$ |wc - l ` == 1 ] ; then

#判斷是否大於0

if [ $num >0 ] ; thenecho $num

else

echo 0

fielse

echo "不是數字"fi

java語言程式設計編寫程式顯示下面的圖案顯

冷葉憶雪 public class demo1 public class demo2 分別執行的結果 c語言程式設計 編寫程式,在螢幕上輸出下面的圖案 要求用for 迴圈實現 include 只要控制每行開頭空格的 個數遞增就可以了 int main void return 0 名很難記 inclu...

C語言程式設計,編寫程式,求10 用C語言

第0題 include define maxlen 70 main int i,temp,flag 0 printf 請輸入第一個字串 n scanf s s1 printf 請輸入第二個字串 n scanf s s2 i strlen s1 temp strlen s2 if i main x i...

編寫程式,求Sn a aa aaaaaaaaaa(n個a)的值,其中a是數字,例如,a 2,n 5時,Sn

include main printf sum ld n sum include stdio.h include conio.h include math.h main long sn 0,si int i 0,j,a,n printf qing shu ru a yu n de zhi n sca...