码迷,mamicode.com
首页 >  
搜索关键字:do while循环    ( 14864个结果
Shortcut Keys Configure of Typora
Shortcut Keys Configure Summary You can use shortcut keys to quickly insert or modify styles or do other operations supported by Typora. You can find ...
分类:其他好文   时间:2021-04-06 14:21:02    阅读次数:0
Java基础--循环结构
循环结构 while 循环 while是最基本得循环,它的结构为: while(布尔表达式){ //循环内容 } 只要布尔表达式为true,循环就会一直执行下去 public class WhileDemo01 { public static void main(String[] args) { / ...
分类:编程语言   时间:2021-04-06 14:10:11    阅读次数:0
win10无法启动虚拟机
(1) 电脑没有Hyper-V pushd "%~dp0" dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do d ...
分类:Windows程序   时间:2021-04-05 12:42:13    阅读次数:0
实验二
#include <stdio.h> int main(){ int n,sum,x,y; sum=1; x=1; y=2; scanf("%d",&n); do { sum +=y; y=y*2; x++; }while(x<=n); printf("n=%d时,sum=%d\n",n,sum); ...
分类:其他好文   时间:2021-04-02 13:12:27    阅读次数:0
操作oracle 数据库 python
# 需要修改oracle的配置数据库 import cx_Oracle from Common.dir_config import caps_dir import yaml class DoSql: def do_orcal(self,query_sql,state='all'): # 1打开yam ...
分类:数据库   时间:2021-04-01 13:48:10    阅读次数:0
Deploy React and Express to Heroku
https://daveceddia.com/deploy-react-express-app-heroku/ You’ve got a React app, and an API server written in Express or something else. Now – how do y ...
分类:其他好文   时间:2021-03-31 12:15:10    阅读次数:0
Docker部署Golang项目及镜像优化实战
Docker部署Golang项目及镜像优化实战 今天在部署公司的项目时, 了解到目标服务器有Docker环境,于是就想着基于Docker来部署项目 这篇文章记录了一次完整的构建镜像到优化的完整过程. 基础环境 Docker 编辑Dockerfile文件 基于简单,快速构建部署的原则,我选择在构建do ...
分类:其他好文   时间:2021-03-31 12:10:43    阅读次数:0
Kafka 集群安装部署
2.1 安装部署 2.1.1 集群规划 192.168.1.102 192.168.1.103 192.168.1.104 zookeeper zookeeper zookeeper kafka kafka kafka 2.1.2 jar 包下载 http://kafka.apache.org/do ...
分类:其他好文   时间:2021-03-30 13:07:22    阅读次数:0
[LeetCode] 1089. Duplicate Zeros 复写零
Given a fixed length array arr of integers, duplicate each occurrence of zero, shifting the remaining elements to the right. Note that elements beyond ...
分类:其他好文   时间:2021-03-30 12:46:57    阅读次数:0
Eclipse默认快捷键
Eclipse中的快捷键(默认): 1.补全代码的声明:alt + / 2.快速修复: ctrl + 1 3.使用单行注释:ctrl + / 4.使用多行注释: ctrl + shift + / 5.取消多行注释:ctrl + shift + \ 6.复制指定行的代码:ctrl + alt + do ...
分类:系统相关   时间:2021-03-29 12:43:43    阅读次数:0
14864条   上一页 1 ... 7 8 9 10 11 ... 1487 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!