| 占位符 | 对应数据类型 | 含义 | | | | | | %d | int | 接受整型数值并将它表示为有符号的十进制数 | | %hd | short int | 短整数 | | %hu | unsigned short | 无符号短整数 | | %o | unsigned int | 无符 ...
分类:
其他好文 时间:
2021-03-15 11:01:07
阅读次数:
0
实验任务1.1// c语言实验1.cpp : 定义控制台应用程序的入口点。 //列向打印两个字符小人。 #include "StdAfx.h" #include<stdio.h> #include<stdlib.h> int main() { printf(" 0 \n"); printf("<H> ...
分类:
编程语言 时间:
2021-03-15 11:00:49
阅读次数:
0
子串位置 # 打印每个o出现的位置 str1 = "hellopythonhelloworld" str2 = 'hellopythonhelloworld' str3 = 'hellopythonhelloworl' index = 0 for i in str1: if i == 'o': pr ...
分类:
其他好文 时间:
2021-03-15 10:59:49
阅读次数:
0
什么是JSON JSON 是一种按照JavaScript对象语法的数据格式,由 Douglas Crockford 推广。虽然它是基于 JavaScript 语法,但它独立于JavaScript,这也是为什么许多程序环境能够读取(解读)和生成 JSON。 JSON可以作为一个对象或者字符串存在,前者 ...
分类:
Web程序 时间:
2021-03-15 10:55:58
阅读次数:
0
public class Test { public static void main(String[] arg0){ String s = "asd....dfa...d.fee.c"; System.out.println(new Test().getReverseStr(s)); } publ ...
分类:
其他好文 时间:
2021-03-15 10:53:11
阅读次数:
0
🙈 MySQL-05-字符集和校对规则 1 开篇介绍 👋 Hello 大家好,我是 Nagase ,MySQL 从删库到跑路 ,又到了学习 MySQL 的时刻,接下来就让我们感受一下 MySQL 独特的魅力吧。 在该篇博客中,我们主要介绍 字符集与校对规则 相关的内容,祝你学的开心 🥳 。 2 ...
分类:
数据库 时间:
2021-03-15 10:51:57
阅读次数:
0
rootfs:根文件系统 /boot:系统启动相关的文件,如内核、initrd,以及grub(bootloader) /dev:设备文件 设备文件: 块文件:随机访问,数据块 字符设备:线性访问,按字符为单位 设备号:主设备号(major)和次设备号(minor) /etc:配置文件 /home:管 ...
分类:
系统相关 时间:
2021-03-15 10:49:44
阅读次数:
0
##1.基本数据类型的包装类 Java提倡的万物皆对象,但是数据类型的划分出现了基本数据类型和引用数据类型,那么我们怎么能把基本数据类型称为对象呢? 除了Integer和Character定义的名称和对应的基本类型差异大,其他六种都是将首字母大写就可以了。 Integer,Byte,Float,Do ...
分类:
编程语言 时间:
2021-03-15 10:38:35
阅读次数:
0
在VS2015上,实验结果表明: (1)char16_t 一个char16_t只能保存2字节,所以只能用0000~ffff范围内的字符对其进行初始化或赋值,使用比0000 ffff大的编码,直接报错 二进制打印出char16_t的值,严格等于utf16编码,在这个范围内,也就是严格等于unicode ...
分类:
其他好文 时间:
2021-03-15 10:29:20
阅读次数:
0
using System; //导入命名空间 using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Lesson_one //这里 ...