java 关键字 数据类型:boolean、int、long、short、byte、float、double、char、class、interface。 流程控制:if、else、do、while、for、switch、case、default、break、continue、return、try、c ...
分类:
编程语言 时间:
2021-03-17 14:43:39
阅读次数:
0
1473下载地址 https://docs.qq.com/doc/DWEpnR2pOWU91b3p4?pub=1&dver=2.1.0 显示格式:hh-mm-ss 可更改的12小时制或24小时制 整点报时功能 闹钟功能 校时功能 #include<reg51.h> char code led_mod ...
分类:
其他好文 时间:
2021-03-17 14:28:24
阅读次数:
0
c++函数在linux系统下编译之后会变成如下样子 _ZNK4Json5ValueixEPKc 在linux命令行使用c++filter $ c++filt _ZNK4Json5ValueixEPKcJson::Value::operator[](char const*) const 可以得到函数的 ...
分类:
编程语言 时间:
2021-03-17 14:19:33
阅读次数:
0
1485下载地址 https://docs.qq.com/doc/DWEpnR2pOWU91b3p4?pub=1&dver=2.1.0 #include <reg51.h> #include <intrins.h> #define uchar unsigned char #define uint u ...
分类:
其他好文 时间:
2021-03-17 14:10:52
阅读次数:
0
Delphi XE 仅仅是学习记录 unit 开始 unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; typ ...
#include<stdio.h> #include<stdlib.h> typedef char ElemType; //结点定义 typedef struct node{ ElemType data; struct node* lchild,*rchild; }BiTNode,*BiTree; ...
分类:
其他好文 时间:
2021-03-17 14:03:43
阅读次数:
0
类型转换 public class 类的转换 { public static void main(String[] args) {? /*类型转换 低 高 byte,short,char-int-long-float-double 高到低强制转换,低到高自动转换 */? //强制转换? int a ...
分类:
其他好文 时间:
2021-03-16 14:07:25
阅读次数:
0
基本类型 整型:byte、short、int、long 浮点型:float、double 字符型:char 布尔型:boolean(只有两个值true与false) 运算符: 1.算术运算符 +、-、*、/、%(求余)、++(自增1)、--(自减1) %用来求余数(取模) ++a(--a)与a++( ...
分类:
编程语言 时间:
2021-03-16 13:58:27
阅读次数:
0
假设有下面这样的一个程序,源代码如下: 1 /* main.c */ 2 #include "mytool1.h" 3 #include "mytool2.h" 4 5 int main(int argc,char **argv) 6 { 7 mytool1_print("hello"); 8 my ...
分类:
其他好文 时间:
2021-03-16 13:48:47
阅读次数:
0
create table TbStudent(stuid integer not null,stuname varchar(20) not null,stusex bit default 1,stubirth datetime not null,stutel char(11),stuaddr var ...
分类:
其他好文 时间:
2021-03-16 13:47:22
阅读次数:
0