ICode9

精准搜索请尝试: 精确搜索
  • AOJ 0033 Ball2020-11-08 14:32:57

    #include<iostream> #include<vector> using namespace std; int n; int num[10]; vector<int> b; vector<int> c; bool check() { if(b.size() > 1) for(int j = 0; j < b.size()-1; j++) if(b[j] > b[j+1]) ret

  • JN_0033:JS通过注册表协议启动本地程序2020-06-04 17:05:28

      新建一个reg文件,内容如下: Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Sublime3] @="Sublime3 Protocol" "URL Protocol"="" [HKEY_CLASSES_ROOT\Sublime3\DefaultIcon] @="F:\\MyProgram\\Sublime3\\sublime_text.exe

  • 0033数组结构之数组2019-12-24 12:54:47

    数组中只能存放同一种类型的数据 数组定义:1、只设定长度 2、不设定长度,但是直接给数组赋值 int[] arr = new int[10]; int[] scores = new int[]{100,99,98};   1、  定义数组类Array 2、  向数组中添加元素,最后位置添加和指定位置 添加、起始位置添加 3、  查询数组中的元素

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有