摘要: 以下就是我们这次的题: 需求说明•模拟实现基于文本界面的《家庭记账软件》。•该软件能够记录家庭的收入、支出,并能够打印收支明细表。•项目采用分级菜单方式。主菜单如下: 家庭收支记账软件 1收支明细2登记收入3登记支出4退 出 请选择(1-4):_ 需求说明 •假设家庭起始的生活基本金为10000元。 阅读全文
posted @ 2020-04-09 19:34 未央未名 阅读(1054) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <stdlib.h> int main(void) { int array[3][2] = {{1,2},{3,4},{5,6}}; int *p; p = array[0]; printf("%d",p[0]); return 0; } 在上 阅读全文
posted @ 2020-02-28 13:47 未央未名 阅读(1902) 评论(0) 推荐(0)
摘要: 1 import numpy as np 2 import matplotlib.pyplot as plt 3 from sklearn.linear_model import LinearRegression 4 from sklearn.datasets import make_regress 阅读全文
posted @ 2019-11-29 18:32 未央未名 阅读(147) 评论(0) 推荐(0)
摘要: 1 import numpy as np 2 import matplotlib.pyplot as plt 3 from sklearn.datasets import make_blobs 4 from sklearn.neighbors import KNeighborsRegressor 5 阅读全文
posted @ 2019-11-29 17:59 未央未名 阅读(121) 评论(0) 推荐(0)
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2019-11-28 19:02 未央未名 阅读(3) 评论(0) 推荐(0)