だから私はpowershellクラスを受講していて、フィートをメートルに変換するスクリプトを作成しようとしています. これは私がこれまでに持っているものですが、正しく機能していません。私はそれを約1時間いじっていますが、適切に動作させることはできません.
Write-Host Hey there. This is an easy script that will convert Feet to Meters - ForegroundColor Cyan -BackgroundColor Magenta
PAUSE;
Function script:converttometers($feet)
{
"$feet feet equals $($feet*.31) Meters"
} #end Converttometers
Converttometers -feet $feet(Read-Host)
読み取りホストから入力を取得するのに問題があります。なんらかの理由で使いたくない =/