码迷,mamicode.com
首页 >  
搜索关键字:break continue    ( 13544个结果
实验4
#include<stdio.h> long long fac( int n ); int main() { int i,n; printf("Enter n:"); scanf("%d",&n); for( i=1;i<=n;++i ) { printf("%d!=%11d\n",i,fac(i) ...
分类:其他好文   时间:2020-12-15 12:30:56    阅读次数:3
http状态码
简单版 [ 100 Continue 继续,一般在发送post请求时,已发送了http header之后服务端将返回此信息,表示确认,之后发送具体参数信息 200 OK 正常返回信息 201 Created 请求成功并且服务器创建了新的资源 202 Accepted 服务器已接受请求,但尚未处理 3 ...
分类:Web程序   时间:2020-12-14 13:06:59    阅读次数:6
LeetCode #389. Find the Difference
###题目 389. Find the Difference ###解题方法 先统计两个字符串中每个字母的出现次数,记为dic_s和dic_t,先遍历dic_s,找一个在dic_t中没出现的字母,或者在dic_t中出现了但是频数和dic_s中不一样的字母,找到了就break不做了,要是没找到就再去d ...
分类:其他好文   时间:2020-12-14 13:02:21    阅读次数:3
python --循环的break 和continue 的区别
break代表结束本层循环,而continue则用于结束本次循环,直接进入下一次循环 continue##打印1-10 除了7的数字number=11 while number>1: number -= 1 if number==7: continue # 结束掉本次循环,即本次循环continue ...
分类:编程语言   时间:2020-12-11 12:27:22    阅读次数:8
素数的个数
num = int(input('输入任意的数值:'))list_sum=0list_num=[]for i in range(2,num): for j in range(2,i): if i%j==0: break else: list_num.append(i) list_sum += i p ...
分类:其他好文   时间:2020-12-10 11:29:43    阅读次数:4
搜索插入位置
LC 搜索插入位置 给定一个排序数组和一个目标值,在数组中找到目标值,并返回其索引。如果目标值不存在于数组中,返回它将会被按顺序插入的位置。 你可以假设数组中无重复元素。 示例 1: 输入: [1,3,5,6], 5 输出: 2 示例 2: 输入: [1,3,5,6], 2 输出: 1 示例 3: ...
分类:其他好文   时间:2020-12-10 11:28:44    阅读次数:5
实验4
1.函数的返回值只能有一个,而一元二次方程可能有两个根。 2. #include <stdio.h> long long fac(int n); int main() { int i,n; printf("Enter n: "); scanf("%d", &n); for(i=1; i<=n; ++ ...
分类:其他好文   时间:2020-12-09 12:31:55    阅读次数:13
659. 分割数组为连续子序列
class Solution { public: bool isPossible(vector<int>& nums) { unordered_map<int, int> numsCntMap;//numsCntMap[num]表示的是num剩余的个数 unordered_map<int, int> ...
分类:编程语言   时间:2020-12-09 11:33:26    阅读次数:7
利用badboy进行脚本录制
1、下载安装 badboy官网地址:http://www.badboy.com.au 提示:官网下载时候会有用户邮件验证的,直接continue跳过,下载即可 安装:和一般的Windows安装程序没区别,无脑下一步就行;安装完成后一般都会在桌面和开始菜单里面有badboy的快捷方式,如果没有,在ba ...
分类:数据库   时间:2020-12-08 12:32:42    阅读次数:7
JS实现分页
1 /** 2 * 获取分页 3 * 4 * js中取整 5 * 1、取整 parseInt(5/2) // 2 6 * 2、向上取整 Math.ceil(5/2) // 3 7 * 3、向下取整 Math.floor(5/2) // 2 8 * 4、四舍五入 Math.round(5/2) //3 ...
分类:Web程序   时间:2020-12-07 11:51:11    阅读次数:8
13544条   上一页 1 ... 22 23 24 25 26 ... 1355 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!