摘要:
include <stdio.h> include <stdlib.h> include <stdbool.h> define MAXSIZE 100 // 定义数组的最大长度 typedef struct { int data[MAXSIZE]; int top1; // 第一个栈的栈顶指针 in 阅读全文
摘要:
修改之后还是有一些功能实现的不完全,但我已经尽力了 package test; public class PlanInformation { public static int temp=0;//将工序对应操作人员 public int id;//日报流水号,依次加一 private String 阅读全文
摘要:
浮点数表示 Java 中的浮点数(float 和 double)是近似值,并不能精确表示所有小数。例如: public class PrecisionLoss { public static void main(String[] args) { double a = 0.1; double b = 阅读全文