自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(43)
  • 收藏
  • 关注

原创 cg 201909-1

dd

2022-09-12 20:02:01 368

原创 ccf202012-1

然后,顿顿根据自己平日里对小菜的暗中观察,以百分制给每一项指标打分,即小菜同学第 i(1≤i≤n)项指标的得分 scorei 是一个 [0,100] 范围内的整数。接下来输入 n 行,其中第 i(1≤i≤n)行包含用空格分隔的两个整数 wi 和 scorei,分别表示第 i 项指标的重要程度和小菜同学该项的得分。鉴于每一项指标的重要性不尽相同,顿顿用一个 [−10,10] 范围内的整数 wi 来表示第 i(1≤i≤n)项指标的重要程度。输出一个非负整数 y,表示小菜同学期末的安全指数。从标准输入读入数据。

2022-09-05 19:07:12 125

原创 202104-1ccf

ccf

2022-09-03 20:09:26 163

原创 202109-1

ccf

2022-09-03 14:25:49 97

原创 ccf202112-2

ccf

2022-09-03 10:16:26 162

原创 湖大oj10049

oj

2022-09-03 09:40:55 97

原创 ccf题目202112-1

ccf

2022-09-02 20:07:00 199

原创 hnuoj10016

10016

2022-08-29 15:58:53 122

原创 湖大oj10001

oj

2022-08-27 08:32:52 144

原创 到底买不买cg

cg

2022-08-22 14:53:31 56

原创 2. 组个最小数

aaa

2022-08-18 16:08:05 64

原创 20. 选美比赛cg

aaa

2022-08-18 14:25:53 96

原创 17. 数塔cg

cc

2022-08-16 16:08:36 227

原创 14. 相同生日cg

c

2022-08-15 18:04:28 248

原创 蛇行矩阵cg

xxxxxx

2022-08-15 13:53:44 124 1

原创 7. 最长连续递增子序列

sss

2022-08-14 21:00:00 666

原创 作业训练四编程题5. 最小钱币数

>>>>>>

2022-08-14 16:13:27 99

原创 作业训练三 部分A+B

ss

2022-06-29 21:30:00 89

原创 最大值树代码样例

记录一个最大堆算法

2022-04-16 22:44:16 49

原创 矩阵自乘(自积)

矩阵自乘

2022-04-04 20:14:12 1915

原创 访问权限aaa

ss

2022-01-04 21:08:28 3598

原创 【无标题】

aa

2022-01-04 20:05:26 355

原创 UVISION

veil

2021-12-29 20:16:07 319 1

原创 当前串口号不可用

宿舍

2021-12-28 13:30:03 621

原创 看电影cg

啥事

2021-12-27 22:16:08 398

原创 指针无法访问数据

啥事

2021-12-27 15:06:15 327

原创 重视c++与c的区别

AA

2021-12-26 22:02:24 157

原创 3. 招聘

哈哈

2021-12-25 21:51:28 164

原创 逆转单向链表

2021-12-15 20:38:50 1010

原创 cg在jone前插入节点

cg

2021-12-15 19:36:10 1248

原创 代码报错的原因

2021-12-15 19:32:58 1523

原创 合并有序链表

2021-12-15 18:50:52 978

原创 dev与codeblocks的区别之一

哈哈

2021-12-15 18:46:34 4763

原创 dev 无法进入下一步调试时

有一中可能是你的查看变量时你已经在函数中出现出现过了的

2021-12-15 18:44:54 656 1

原创 学生链表的创建与输出

#include <iostream>#include <iomanip>using namespace std;struct Student{ long number; float score; Student* next=NULL;};Student *head=new Student; Student *pE=head;Student *p=head;Student *p1=head,*p2...

2021-12-12 22:56:40 913

原创 评委打分cg

#include <iostream>#include <algorithm> using namespace std;class pingwei{ public: void create (){ cin>>this->name; for(int y=0;y<7;y++){ cin>>this->score[y]; } sort(this->score,this->sco...

2021-12-10 18:10:23 383

原创 定义日期Date类

#include <iostream>#include "Time.h" /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main( ) { Time aa; return 0;}#ifndef TIME_H#define TIME_H#include <iostream>using name...

2021-12-10 17:02:37 667

原创 单向列表插入排序

#include<iostream>#include <stdlib.h>#include <algorithm> //调用sort函数必备;#include <vector>#include<cstring> using namespace std;struct list{ long id; char name [20]; char sex[20]; int age; list * next; };...

2021-12-10 00:20:05 358

原创 高风险人群统计

#include <iostream>using namespace std;#include<vector>class gaowei { public: int n1,n2; int n3,n4; gaowei(){ } gaowei(int a){ cin>>n1>>n2; cin>>n3>>n4; vector<vector<int>> gaowei...

2021-12-09 09:20:29 528

原创 武将排位cg

#include<iostream>//#incldue <stdlib.h>#include <algorithm> //调用sort函数必备;#include<cstring> using namespace std;class wujiang{ public: wujiang(){ } wujiang(char *p,int ti ,int wu1,int zhi){ tili=ti; wuli=wu1; zhil.

2021-12-09 08:56:39 377

空空如也

空空如也

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

TA关注的人

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