题目内容

从接通电源到操作系统启动,需要经过的步骤有:____、____和____。

查看答案
更多问题

I/O重定向有三种定向操作:输入重定向、输出重定向、。

内核是使用______语言编写的。

以下Shell脚本,能实现计算1~100的和。请填空,使脚本完整。#! /bin/bashsum=0for num in {1..100}doletdoneecho sum=$sum

以下脚本实现对成绩的五级判断,填空完成脚本。#!/bin/bashecho "please input score(0-100):"scoreif [ $score -lt 0 -o $score -gt 100 ]; thenecho erro scoreelif [ $score -ge 90 ]; thenecho Aelif [ $score -ge 80 ]; thenecho Belif [ $score -ge 70 ]; thenecho Celif [ $score -ge 60 ]; thenecho Delseecho Efi

答案查题题库