码迷,mamicode.com
首页 >  
搜索关键字:__main__    ( 65088个结果
Scanner进阶使用
1 package com.pingfan.scanner; 2 3 import java.util.Scanner; 4 5 public class Demo3 { 6 public static void main(String[] args) { 7 Scanner scanner = n ...
分类:其他好文   时间:2021-03-18 14:30:41    阅读次数:0
3.17学习总结.listview用法总结
今天复习了listview控件的用法。 1.activity_main.xml 中的代码,如下: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/re ...
分类:其他好文   时间:2021-03-18 14:30:14    阅读次数:0
GO redis
package main import ( "fmt" "github.com/go-redis/redis" ) func main() { client := redis.NewClient(&redis.Options{ Addr: "127.0.0.1:6380", Password: "" ...
分类:其他好文   时间:2021-03-18 14:25:19    阅读次数:0
Java注释
单行 多行 文档 public class HelloWorld { public static void main (String [] args) { //output hello world /* output hello world */ /** * @description hellowo ...
分类:编程语言   时间:2021-03-18 14:20:10    阅读次数:0
练习2-12 输出华氏-摄氏温度转换表
输入2个正整数lower和upper(lower≤upper≤100),请输出一张取值范围为[lower,upper]、且每次增加2华氏度的华氏-摄氏温度转换表。 温度转换的计算公式:2,其中:C表示摄氏温度,F表示华氏温度。 输入格式: 在一行中输入2个整数,分别表示lower和upper的值,中 ...
分类:其他好文   时间:2021-03-18 14:16:25    阅读次数:0
数组作为函数参数传递
数组作为函数参数传递的时候,会退化为指针,并不能得到数组的大小 一 void test1(int a[]) { cout << sizeof(a) << endl; } int main() { int a[4]; test1(a); } 输出结果是指针的大小,并不是数组的大小 二 void tes ...
分类:编程语言   时间:2021-03-18 14:12:35    阅读次数:0
Hello,world!
HelloWord 新建文件夹,存放代码 新建一个Java文件 文件后缀名.java(Hello.java) 编写代码 public class Hello{ public static void main(String[] args){ System.out.print("Hello,world! ...
分类:其他好文   时间:2021-03-18 14:11:04    阅读次数:0
域名到期时间检测
#!/bin/bash #检测whois命令是否存在,不存在则安装jwhois包is_install_whois(){ which whois &> /dev/null if [ $? -ne 0 ];then yum install -y jwhois fi}is_install_whois#定义 ...
分类:其他好文   时间:2021-03-18 14:10:30    阅读次数:0
PAT(乙级)2021年春季考试
比赛链接:https://pintia.cn/market/item/1371703238093053952 7-1 打印三角形拼图 (15 分) 题解 找规律。 代码 #include <bits/stdc++.h> using namespace std; int main() { ios::s ...
分类:其他好文   时间:2021-03-17 15:03:51    阅读次数:0
线性结构_练习:检查链表是否回文
实现类: public class LinkedList { /* * 回文链表 * 检查链表是否回文 */ public static void main(String[] args) { Linknode node = new Linknode(1); node.next = new Linkn ...
分类:其他好文   时间:2021-03-17 15:02:32    阅读次数:0
65088条   上一页 1 ... 68 69 70 71 72 ... 6509 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!