摘要: 顺序表的实现 #include<iostream> #include<string> #include<iomanip> #include <cstdlib> using namespace std; #define OVERFLOW -2 typedef int ElemType; //ElemT 阅读全文
posted @ 2021-09-19 23:34 kuaiquxie 阅读(46) 评论(0) 推荐(0)
摘要: Math类方法 package m; public class m { public static void main(String args[]) { //计算平方根 System.out.println(Math.sqrt(4));//2.0 //计算立方根 System.out.println 阅读全文
posted @ 2021-09-19 23:24 kuaiquxie 阅读(39) 评论(0) 推荐(0)