码迷,mamicode.com
首页 >  
搜索关键字:__main__    ( 65088个结果
弹跳小球C语言
1 #include <iostream> 2 #include <cstdlib> 3 #include <Windows.h> 4 using namespace std; 5 6 int main() 7 { 8 int i, j; 9 int x = 0; 10 int y = 5; 11 ...
分类:编程语言   时间:2021-05-24 10:59:22    阅读次数:0
题目:从键盘输入10个整数并保存到数组,要求找出最小数和它的下标,然后把它和数组中最前面的元素调换
这题考察的是读者对于数组的基础能力,考点为数组的下标和排序,难度为:1颗星 1 #include<stdio.h> 2 int main() 3 { 4 int arry[10]; // 定义一个数组,用于存放 5 int i; // 临时变量,用完遍历 6 int temp; // 临时变量,作为 ...
分类:编程语言   时间:2021-05-24 10:50:45    阅读次数:0
进程和线程的区别
/** * 进程:就是一个程序,例如qq.exe,一个进程有多个线程,至少有一个 * * 线程:轻量级的进程 * java 默认两个线程一个是main,一个是GC线程。 * * java 真的可以开启线程吗? * 开不了,java调用 c++ native 方法开启线程 */ ...
分类:编程语言   时间:2021-05-24 10:44:07    阅读次数:0
Linux 操作系统分析课程总结
一、Linux系统概念模型 (一)中断与系统调用 1. 中断 中断可以提高处理器的效率,即当 I/O 设备准备好数据时,通过中断,CPU 才去处理 I/O 设备准备好的数据。 中断分为外部中断和内部中断: 外部中断一般指计算机外设发出的中断。在用户进程执行时,硬件中断信号到来,进入内核态,执行这个中 ...
分类:系统相关   时间:2021-05-24 10:06:59    阅读次数:0
eclipse 编辑器的快捷键
示例 1 : 批量修改 ALT+SHIFT+R 示例 2 : 快速输入主方法 \1. 敲入main \2. alt+/ 示例 3 : 快速输入System.out.println \1. 敲入syso \2. alt+/ 示例 4 : 快速输入for \1. 敲入for \2. alt+/ 示例 5 ...
分类:系统相关   时间:2021-05-24 10:01:19    阅读次数:0
python 栈的理解与使用
title: ①解决字符串的翻转 ②堆和栈的区别? >>> class Stack: def __init__(self): self.item = [] def isEmpty(self): return len(self.item)==0 def push(self,item): self.it ...
分类:编程语言   时间:2021-05-24 09:57:27    阅读次数:0
MongoDB 学习 5 组件 MongoDB.Driver,增删改
使用组件 MongoDB.Driver 插入数据 class Program { static void Main(string[] args) { AddWorkerToMongo(); } static void AddWorkerToMongo() { var client = new Mon ...
分类:数据库   时间:2021-05-24 09:44:03    阅读次数:0
Java——Math
一、介绍 Math包含执行基本数字运算的方法,如基本指数、对数、平方根和三角函数。所提供的都是静态方法,可以直接调用。 二、abs public static int abs(int a) abs方法用来获取参数a的绝对值 例子 public class MathTest { public stat ...
分类:编程语言   时间:2021-05-24 09:39:38    阅读次数:0
Markdown快速入门(typora)
Markdown快速入门(typora) 1、代码块: // 代码块语法 ?```Java(语言类型) ?```shell 1.java代码块 public class HelloWorld { public static void main(String []args) { System.out. ...
分类:其他好文   时间:2021-05-24 08:54:58    阅读次数:0
springboot配置优先级
main:11, ServerApplicationrun:1230, SpringApplicationrun:1242, SpringApplicationrun:297, SpringApplicationprepareEnvironment:338, SpringApplicationenv ...
分类:编程语言   时间:2021-05-24 08:51:37    阅读次数:0
65088条   上一页 1 ... 33 34 35 36 37 ... 6509 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!