#include <stdio.h> int main() { char sh[13][6]={"个","十","百","千","万","十万","百万","千万","亿","十亿","百亿","千亿","万亿"}; // int cc=0; // for(cc=0;cc<=13;cc++) // ...
分类:
编程语言 时间:
2021-06-18 19:37:12
阅读次数:
0
#include <stdio.h> #include <stdlib.h> #define N 10 typedef struct student { int num; char name[20]; int score; }STU; int main() { FILE *fin; STU st[N ...
分类:
其他好文 时间:
2021-06-18 19:14:39
阅读次数:
0
首先需要在 Vue 项目中继承 typescript vue add typescript 提示:如果配置完 ts 后调用 this.$store 有警告信息,请重启 vscode,或者安装 vue3 的插件后重启 vscode 充实 一、修改 store.js 为 store.ts 二、配置 st ...
分类:
其他好文 时间:
2021-06-17 16:47:28
阅读次数:
0
基础数据类型 int >Integer long >Long float >Float double >Double boolean >Boolean char[] >String 数组 基本类型的一组数据,使用数组来表示 int[] arrs = new int[5]; 数据越界问题--QA需注意 ...
分类:
编程语言 时间:
2021-06-17 16:34:13
阅读次数:
0
[Linux文件管理、配置文件目录、vim编辑器] ? **Linux ** 系统的单根?录结构 linux与windows的?录结构对? 123 绝对路径与相对路径 ?切皆?件的设计思想 ?件的时间 ls -l ?件名 仅看的是?件的修改时间 Linux?件有 三种时间,?stat查看 例如:st ...
分类:
系统相关 时间:
2021-06-16 18:14:08
阅读次数:
0
在做题中,常常要求读入一行字符串,而这串字符里面可能有空格、制表符等空白字符,如果直接用%s是不可以的,于是有些人就想到用gets(),但由于gets很难控制,故而一般不推荐使用,所以用%[^\n]就可以很好的解决这个问题了,^表示"非"即读入其后面的字符就结束读入。#include <stdio. ...
分类:
其他好文 时间:
2021-06-16 18:13:15
阅读次数:
0
create or replace trigger trigger_demo before insert on table1 for each rowdeclare -- local variables here t_conumnValue VARCHAR2(10); t_lbId VARCHAR2 ...
分类:
数据库 时间:
2021-06-16 18:09:14
阅读次数:
0
1、char*转换成CString若将char*转换成CString,除了直接赋值外,还可使用CString::format进行。例如:char chArray[] = "This is a test";char * p = "This is a test";或LPSTR p = "This is ...
分类:
其他好文 时间:
2021-06-16 17:59:58
阅读次数:
0
JavaDoc命令 javadoc命令是用来生成自己API文档的 /**+回车 参数信息 @author 作者名 @version 版本号 @since 指明需要最早使用的jdk版本 @param 参数名 @return 返回值情况 @throws 异常抛出情况 IDEA中:在方法上直接输入/**+ ...
分类:
编程语言 时间:
2021-06-16 17:57:37
阅读次数:
0
8 种基本数据类型 Java 中有 8 种基本数据类型分为三大类。 字符型 char 布尔型 boolean 数值型 1.整型:byte、short、int、long 2.浮点型:float、double String 不是基本数据类型,是引用类型。 整型中 byte、short、int、long ...
分类:
编程语言 时间:
2021-06-15 18:30:02
阅读次数:
0