数据类型: 整数(byte,short,int,long)1 数值型1 浮点数(float,double)1 基本数据类型1 字符(char)1 数据类型 非数值型2 布尔(boolean)2 引用数据类型2 类(class)2 接口(interface)2 数组([])2 数据类型内存占用和取值范 ...
分类:
其他好文 时间:
2021-06-11 18:07:25
阅读次数:
0
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 typedef struct student { int id; char name[20]; char subject[20]; float perf; floa ...
分类:
其他好文 时间:
2021-06-11 18:04:10
阅读次数:
0
#include <stdio.h> const int N=3; int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", &a[i] ...
分类:
其他好文 时间:
2021-06-11 17:32:53
阅读次数:
0
##“/”运算符 首先说明一个小定义 实型实际就是浮点数,分为单精度浮点数和双精度浮点数,分别为32位长和64位长,即为float与double。 除法运算符“/”。二元运算符,具有左结合性。参与运算的量均为整型时,结果为整型,舍去小数。如果运算量中有一个为实型,结果为双精度实型。 ##“%”运算符 ...
分类:
编程语言 时间:
2021-06-09 15:28:38
阅读次数:
0
:header-cell-style="{textAlign: 'center'}" //表头居中:cell-style="{ textAlign: 'center' }" //内容居中 :show-overflow-tooltip="true" //超出省略号 fit //内容展开 ...
分类:
其他好文 时间:
2021-06-09 10:34:01
阅读次数:
0
1.额外标签法(隔墙法);2.父元素添加overflow属性;3.父元素添加after伪元素;4.父元素添加双伪元素。 ...
分类:
Web程序 时间:
2021-06-08 23:05:44
阅读次数:
0
问题如下: 解决 position: relative; z-index: 1; ...
分类:
移动开发 时间:
2021-06-08 22:50:54
阅读次数:
0
仿照页面 <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>头条页面</title> < ...
分类:
其他好文 时间:
2021-06-08 22:35:14
阅读次数:
0
Java数据类型 基本数据类型 整数类型 byte short int long 浮点类型 float double 字符类型 char string boolean类型 引用数据类型 类 接口 数组 ...
分类:
编程语言 时间:
2021-06-08 22:34:53
阅读次数:
0
####出现错误 提示信息: router.beforeEach((to, from, next) => { if (!storage.getItem('userInfo')) { console.log('error') next({ path: '/login' }) } else { cons ...
分类:
其他好文 时间:
2021-06-06 19:32:40
阅读次数:
0