0 کاربر و 3 مهمان درحال مشاهده موضوع.
با bash - perl - python ؟؟؟؟
تمرین دادن که شما چیز یاد بگیری نه بقیه حل کنند
temp_array[0]='123'temp_array[1]='456'temp_array[2]='789'echo ${temp_array[2]}
echo "enter 4 integers:"read temp_array[0]read temp_array[1]...
#! /bin/bashecho $0echo $1echo $2exit 0
cat NameofFile
chmod 755 File.sh./File.sh
echo 8+5 | bcecho 8-5 | bcecho '(8+5)/12' | bc
نقلقول از: کیان در 14 دی 1391، 06:38 بظتمرین دادن که شما چیز یاد بگیری نه بقیه حل کنند :|ای کاش تمرین بود پروژه اخر ترم درس 1 واحدی هست ! :|کلا 10 تا بوده این 4 تاش رو نتونستم حل کنم !
#!/bin/bashdeclare -i xread -a sort_ar -p "please enter 4 numbers(one space between them): "unsort=${sort_ar[*]}for ((j=1; j<4; j++ ))do for ((i=0; i<3; i++)) do if [ ${sort_ar[$i+1]} -lt ${sort_ar[$i]} ];then x=${sort_ar[$i]} sort_ar[$i]=${sort_ar[$i+1]} sort_ar[$i+1]=$x fi donedoneecho "unsoted: $unsort"echo "sorted: ${sort_ar[*]}"exit*----------------------------*#!/bin/bashif [ $# -lt 4 ];then echo "usage: peleas type $0 with 4 numbrs(one space between them)"exit 1filet multipl=$1*$4let plus=$2+$3echo "$1 x $4 = $multipl"echo "$2 + $3 = $plus"exit*----------------------------*#!/bin/bashcat file1;cat file2exit*----------------------------*#!/bin/bashif [ $# -lt 4 ];then echo "usage: please type $0 with 4 words or numbers (one space between them)"exit 1fimyarry=([0]="ali" [2]="hosein" [4]="ehsan" [6]="khosro")read -p "please enter 4 element: " myarry[1] myarry[3] myarry[5] myarry[7]echo ${myarry[*]}exit