码迷,mamicode.com
首页 >  
搜索关键字:scala for if match while    ( 37974个结果
实验3
实验1#include <math.h> #include <stdio.h> int main() { float a, b, c, x1, x2; float delta, real, imag; printf("Enter a, b, c: "); while(scanf("%f%f%f", ...
分类:其他好文   时间:2020-11-20 12:08:00    阅读次数:9
python 数据库游标,fetchmany(int),边取数据边处理,防止数量量太大撑爆内存
self.cr.execute(sql, ) # res = self.cr.fetchmany(1000) while True: res = self.cr.fetchmany(1000) print(len(res),res) if not res: break return res fetc ...
分类:数据库   时间:2020-11-20 12:06:46    阅读次数:12
[题解]CSP2020-S T4 Snakes
放个代码吧,开个坑 #include<bits/stdc++.h> #define rep(i,a,b) for (register int i=(a);i<=(b);i++) #define drep(i,a,b) for (register int i=(a);i>=(b);i--) typed ...
分类:其他好文   时间:2020-11-20 11:48:09    阅读次数:5
实验3
#include <math.h> #include<stdio.h> int main (){ float a, b, c, x1, x2; float delta, real, imag; printf("Enter a, b, c: "); while(scanf("%f%f%f%f",&a, ...
分类:其他好文   时间:2020-11-20 11:37:01    阅读次数:10
Mac Appium ANDROID_HOME 环境变量问题
macOS 版本:10.15.4 (19E287) appium版本:1.18.3 遇到的问题: 先是报这个:An unknown server-side error occurred while processing the command. Original error: Neither AND ...
分类:移动开发   时间:2020-11-20 11:36:33    阅读次数:50
实验3
#include<math.h> #include<stdio.h> int main(){ float a,b,c,x1,x2; float delta,real,imag; printf("Enter a,b,c:"); while(scanf("%f%f%f",&a,&b,&c) != EOF ...
分类:其他好文   时间:2020-11-20 11:32:25    阅读次数:7
实验三:磕磕碰碰
实验内容 1.实验任务1 #include<math.h> #include<stdio.h> int main(){ float a,b,c,x1,x2; float delta,real,image; printf("Enter a,b,c: "); while(scanf("%f,%f,%f" ...
分类:其他好文   时间:2020-11-19 12:36:32    阅读次数:6
实验三
ex1 #include <stdio.h> #include <math.h> int main() { float a,b,c,x1,x2; float delta,real,imag; printf("Enter a,b,c: "); while(scanf("%f%f%f",&a,&b,&c ...
分类:其他好文   时间:2020-11-19 12:21:43    阅读次数:5
roslaunch px4 multi_uav_mavros_sitl_sdf.launch报错
在试图运行multi_uav_mavros_sitl_sdf.launch时报错: while processing /home/sp/src/Firmware/launch/single_vehicle_spawn_sdf.launch:Invalid <param> tag: Cannot lo ...
分类:其他好文   时间:2020-11-19 12:17:57    阅读次数:5
exp+3
# include<stdio.h> # include<stdlib.h> # include<math.h> int main(){ float a,b,c,x1,x2; float delta,real,imag; printf("请输入a,b,c:"); while(scanf("%f%f% ...
分类:其他好文   时间:2020-11-18 12:56:50    阅读次数:11
37974条   上一页 1 ... 63 64 65 66 67 ... 3798 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!