码迷,mamicode.com
首页 >  
搜索关键字:in out    ( 35870个结果
Java流程控制学习004While和Do..while循环结构
While和Do..while循环结构 while(布尔表达式){ //循环内容} 只要布尔表达式为true,循环就会一直执行下去 大多数情况下会让循环停止下来,我们需要一个让表达式失效的方式来结束循环 少数情况需要循环一直进行,比如服务器的请求响应监听 循环条件一直为true就会造成无限循环【死循 ...
分类:编程语言   时间:2021-02-17 14:18:15    阅读次数:0
约数的个数
试除法求约数个数。 int n; int divisor(int n) { int res=0; for(int i=1;i*i<=n;i++) if(n % i == 0) { res++; if(i != n/i) res++; } return res; } int main() { whil ...
分类:其他好文   时间:2021-02-17 14:14:28    阅读次数:0
数据类型转换
public class demon04 { public static void main(String[] args) { int i = 128; double b = i; //强制转换 (类型)变量名 由高-->低 //自动转换 由低-->高 System.out.println(i); ...
分类:其他好文   时间:2021-02-16 12:46:29    阅读次数:0
HelloWorld!
HelloWorld 随便新建一个文件夹,存放代码 新建一个java文件 编写代码 public class Hello{ public static void main(String[] args){ System.out.print("Hello,World!"); }} 编译javac jav ...
分类:其他好文   时间:2021-02-16 12:44:13    阅读次数:0
[CF1467B] Hills And Valleys
给定一段序列,尝试通过修改其中一个数的值,使得峰与谷的数量之和最小。 ...
分类:其他好文   时间:2021-02-16 12:39:25    阅读次数:0
【复习回顾】方法的重写
public class Applicaition { public static void main(String[] args) { //方法的调用只和左边,定义的数据类型有关 A a = new A(); a.test(); //父类的引用b指向了子类 //子类重写了父类的方法 B b = n ...
分类:其他好文   时间:2021-02-16 12:32:51    阅读次数:0
_str_t 部分函数(内部)
1.小写输出 _str_t Val("AFSDFSasdfsdf"); cout<< Val.toLowerCase().data()<<endl; 2.中文输出 _str_t Val("中国人"); cout<< Val.data()<<endl; ...
分类:其他好文   时间:2021-02-16 12:29:18    阅读次数:0
[Bash] Create a Bash Script that Accepts Named Options with getopts
Getopts Let’s say you want to allow a user to pass a -v flag to turn on verbose logging in a script. Manually parsing out options passed to a script i ...
分类:其他好文   时间:2021-02-16 12:03:18    阅读次数:0
07 | 前端框架开发流程 | 谷粒
{ path: '/teacher', component: Layout, redirect: '/teacher/table', //重定向跳转 name: '讲师管理', meta: { title: '讲师管理', icon: 'example' }, //title页面标题,icon头像 ...
分类:其他好文   时间:2021-02-15 12:11:54    阅读次数:0
【springMVC中tomcat控制台乱码问题 】
我遇到的tomcat乱码可以分几种: 测试代码: @RestController public class TestController { @RequestMapping("/a1") public String test(){ System.out.println("TestController ...
分类:编程语言   时间:2021-02-15 11:51:13    阅读次数:0
35870条   上一页 1 ... 48 49 50 51 52 ... 3587 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!