用于科学计算的 Python 发行版: 1.Anaconda https://www.continuum.io/ 公司continuum. 有商业版本. Anaconda is the leading open data science platform powered by Python. The open source version of Anaconda is a high performance distribution of Python and R and include…
1.建一表,放初始化资料 因为农历的日期,是由天文学家推算出来的,到现在只有到2049年的,以后的有了还可以加入! CREATE TABLE SolarData ( yearId int not null, data char(7) not null, dataInt int not null ) --插入数据 INSERT INTO SolarData SELECT 1900,'0x04bd8',19416 UNION ALL SELECT 1901,'0x04ae0',19168 U…
import java.util.Scanner; public class Compound_int { public static void main(String[] args) { tip(); while (true) { menu(); int n = scanner.nextInt(); if (n >= 0 && n <= 7) { if (n == 0) break; switch (n) { case 1: benjin(); break; case 2:…