百度试题 结果1 题目编写一个Shell脚本,计算1~100的和。相关知识点: 试题来源: 解析 答:#!/bin/bashsum=0for num in {1..100}dolet sum =numdoneecho sum=$sum 反馈 收藏
为了编写一个计算1到100和的Shell脚本,你可以按照以下步骤进行: 创建一个新的Shell脚本文件: bash touch sum.sh 编辑脚本文件:使用你喜欢的文本编辑器(如vi、nano等)打开并编辑sum.sh文件。这里以vi为例: bash vi sum.sh 在脚本中使用循环结构:在脚本中,你可以使用for循环或while循环从1遍历到100。这里以...
!/bin/bash j=0 for ((i=1;i<=100;i++));do j=$(($i+$j))done echo $j
【答】程序清单如下:L0.2 prime.sh !/bin/bash SCRIPT: prime.sh AUTHOR: Zhaing&Bo DATE: 2010-11-21 REV: 1.1.A PLATFORM: Linularis PURPOSE: Read a number from the console, then print all the primes in (1~100). And at the same time calculate the sum of all the...
百度试题 题目编写一个Shell脚本,计算1~100的和。相关知识点: 试题来源: 解析 答:#!/bin/bashsum=0for num in {1..100}dolet sum+=numdoneecho sum=$sum 反馈 收藏