自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(15)
  • 资源 (4)
  • 收藏
  • 关注

原创 关于jeecgboot的使用心得

随着大前端时代的到来,我作为一个后端也开始了解前端三大框架,React、Vue、Angular都或多或少的接触过。最喜欢国人尤雨溪的vue,React对一个后端来说比较难入门,Angular又比较重,vue的双向数据绑定很合后端开发人员的胃口,文档简单好懂易上手,并且可以快速构建自己的前端框架,所以想走全栈开发方向的小伙伴都会比较倾向使用vue。 全栈的话,像安卓,苹果,各平台小程序这些想要都会一般来说做不到,也没那个时间,所幸有uniapp这样的前端跨平台框架,一套代码,多端运行,让...

2020-12-12 15:33:20 4284 4

原创 vue-cli

# vue-cli填坑记录## 一、打包文件路径问题解决:到config文件夹中打开index.js文件,更改build里面的assetsPublicPath属性为"./"。## 二、配置scss1.安装对应依赖node模块 npm install node-sass --save-devnpm install sass-loader --save-dev2.在用scs...

2018-09-27 10:20:40 128

原创 杭电1021

题意大概是让你判断F(n)是不是3的倍数。第一种方法: 找规律,比较简单(如果能找出来的话)。第二种方法: 数论。#includeusing namespace std;int main(){ int n; while (cin >> n) { if (n % 4 == 2) printf("yes\n"); else printf("no\n"); } ret

2016-02-15 16:48:33 488 1

原创 杭电1019

#includeusing namespace std;int main() { int n, m, t, i; _int64 a, b; cin >> n; while (n--) { cin >> m; b = 0; while (m--) { cin >> a; if (b == 0) { b = a; continue; }

2016-02-15 16:01:58 361

原创 杭电2014

#includeusing namespace std;int main() { int n, i, a, max, min; double ave, sum; while (cin >> n) { cin >> a; max = min = sum = a; for (i = 1;i < n;i++) {

2016-02-14 11:22:28 444

原创 杭电2012

#includeusing namespace std;int main() { int x, y, i, j, t, p; while (cin >> x >> y) { if (x == 0 && y == 0)break; p = 1; for (i = x;i <= y;i++) { t = i*i

2016-02-14 11:15:21 872

原创 杭电2010

#include using namespace std;int main() { int m, n, i, a, b, c, p; while (cin >> m >> n) { p = 0; for (i = m;i <= n;i++) { a = i / 100; b = i / 10 % 1

2016-02-14 10:50:27 767

原创 杭电2004

#include using namespace std;int main() { int a; while (cin >> a) { if (a < 0) { printf("Score is error!\n"); continue; } switch (a/10) {

2016-02-14 10:45:23 376

原创 杭电2005

#include using namespace std;int main() { int a, b, c, date[12] = { 31,28,31,30,31,30,31,31,30,31,30,31 }; while (scanf("%d/%d/%d", &a, &b, &c)!=EOF){ if ((b > 2) && ((a % 4 == 0 && a % 100 != 0

2016-02-14 10:41:40 335

原创 杭电1013

#include #includeusing namespace std;int main() { int n, i; char s[1000]; while (cin >> s) { if (strcmp(s, "0") == 0)break; n = 0; int len = strlen(s); f

2016-02-14 10:30:43 311

原创 杭电1008

#includeusing namespace std;int main(){ int n; while (cin >> n){ if (n == 0)break; int a, time = n * 5, temp = 0; while (n--) { cin >> a; if (

2016-02-14 10:28:09 274

原创 杭电1004

#includeusing namespace std;struct Color { char col[16]; int k;};int main(){ int n,i,j,p,t; char c[16]; Color a[1001]; while (cin >> n&&n != 0) { i = 0; whi

2016-02-14 10:20:25 287

原创 杭电1003

#includeusing namespace std;int main() { int T, id = 1; cin >> T; while (T--) { int a, n, z, max, sum, begin, end; z = sum = begin = end = 0; max = -1001;

2016-02-14 10:18:28 298

原创 杭电1002

#includeusing namespace std;int main(){ int T, i, j, t, A, B, sum[1001]; char a[1000], b[1000]; cin >> T; for (i = 1;i <= T;i++) { cin >> a >> b; A = strlen(a);

2016-02-14 10:14:45 406

原创 杭电1017

#includeusing namespace std;int main(){ int T, n, m, i, j, k, id, count; cin >> T; for (i = 1;i <= T;i++) { id = 1; while (cin >> n >> m&&n != 0 || m != 0) { count = 0; for (j = 2;j <

2016-02-14 00:24:08 341

linux C 常用库函数手册

非常实用的API,拿出来分享给大家

2017-07-10

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除