#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; float ...
分类:
其他好文 时间:
2021-06-11 18:08:13
阅读次数:
0
数据类型: 整数(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
仿照页面 <!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
1、输入映射:(1) 基本类型:String, long, integer, double, float, boolean等;(2) pojo类型: 自定义的java bean;(3) Map 企业中不会用到;2、输出映射:(1) 基本类型:String, long, integer, double ...
分类:
编程语言 时间:
2021-06-06 19:06:40
阅读次数:
0
关键: position: fixed; wxml: <navigator url="/pages/issue/index"><image class='img' src='/assets/images/Home/add.png' bindtap='add'></image></navigator> ...
分类:
微信 时间:
2021-06-06 18:57:59
阅读次数:
0
SharedPreference是一种轻量级的内部数据存储方式,采用Key/value的形式,只运行存储一些简单的数据,比如int,float等类型 首先先创建SharedPreference package com.example.sharedpreference; import androidx ...
分类:
移动开发 时间:
2021-06-04 19:53:37
阅读次数:
0