摘要:
#include <stdio.h> #include <stdlib.h> #include <string.h> #define MAXSIZE 20 #define ERROR 0 #define OK 1 #define FALSE 0 #define TRUE 1 typedef int 阅读全文
posted @ 2021-07-18 19:36
不负韶华。
阅读(132)
评论(0)
推荐(0)
摘要:
//封装数组 #include <stdio.h> #include <stdlib.h> #include <string.h> #define MAXSIZE 20 typedef int ElemType; typedef struct{ ElemType data[MAXSIZE]; int 阅读全文
posted @ 2021-07-18 16:20
不负韶华。
阅读(37)
评论(0)
推荐(0)
摘要:
java程序运行机制: 跨平台——无论是windows还是mac等等操作系统上都可以运行 原因;程序在jvm虚拟机上运行而不是在操作系统上 java程序运行步骤: 编写java代码生成.java文件 编译.java文件为.class字节码 将字节码文件转成CPU能执行的指令 java标识符: 规则: 阅读全文
posted @ 2021-07-18 15:47
不负韶华。
阅读(40)
评论(0)
推荐(0)
浙公网安备 33010602011771号