1. 问题描述 Given a non-negative integer num, repeatedly add all its digits until the result has only one digit.For example: Given num = 38, the process i ...
分类:
其他好文 时间:
2016-06-18 19:50:27
阅读次数:
133
一、shell条件语句(if用法) if语句结构[if/then/elif/else/fi] shell命令,可以按照分号分割,也可以按照换行符分割。如果想一行写入多个命令,可以通过“';”分割,如: 实例:(test.sh) 二、循环语句(for,while,until用法): (1)for循环使 ...
分类:
系统相关 时间:
2016-06-16 17:59:49
阅读次数:
239
1. HttpClientUtil 工具类
package com.until.hsx;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.io.UnsupportedEncodingException;
import java....
分类:
Web程序 时间:
2016-06-16 15:02:39
阅读次数:
246
Given a non-negative integer num, repeatedly add all its digits until the result has only one digit. For example: Given num = 38, the process is like: ...
分类:
其他好文 时间:
2016-06-15 15:51:38
阅读次数:
107
CocoaPods 1.0.1 is available. To update use: `gem install cocoapods` Until we reach version 1.0 the features of CocoaPods can and will change. We stro ...
分类:
其他好文 时间:
2016-06-15 10:50:01
阅读次数:
273
脚本编程:顺序结构选择结构ifcase循环结构forwhileuntilwhile循环:适合循环次数未知的场景,一定要有退出条件while进入循环:条件满足退出循环:条件不满足语法:whileCONDITON;dostatement…done-+计算100以内所有整数的合#!/bin/bash#declare-iI=1declare-iSUM=0while[$I-l..
分类:
系统相关 时间:
2016-06-14 19:48:31
阅读次数:
289
while-endw .while(条件) 循环体(条件满足时执行) .endw repeat-until .repeat 循环体(条件不满足时执行) .until(条件) if-elseif-endif .if(条件1) 指令1 .elseif(条件2) 指令2 .endif 条件运算符 变量与操 ...
分类:
其他好文 时间:
2016-06-13 07:43:29
阅读次数:
194
显示9:05:00 到9:15:00 之间在/home/student/systemdreview.txt 文件中记录所有systemd日志条目 # echo "journalctl --since 9:05:00 --until 9:15:00" >/home/student/systemdrev ...
分类:
其他好文 时间:
2016-06-12 20:24:06
阅读次数:
290
题目链接:https://leetcode.com/problems/add-digits/
题目:
Given a non-negative integer num, repeatedly add all its digits until the result has only
one digit.
For example:
Given num = 38, the p...
分类:
其他好文 时间:
2016-06-12 02:43:27
阅读次数:
135
#until循环:执行一系列command直到条件为true时停止,一般while循环优先与until循环,极少数until更加有用#格式如下:#until expression#do# Statment to be executed until expression is true#done#例: ...
分类:
系统相关 时间:
2016-06-09 11:04:33
阅读次数:
169