码迷,mamicode.com
首页 >  
搜索关键字:score    ( 2092个结果
def __init__(self, value) -> None:
常见的两种类的定义方式如下: class Student: def __init__(self):#两者之间的区别 self.name = None self.score = None def __init__(self, name, score): self.name = name self.sc ...
分类:其他好文   时间:2020-05-12 13:43:28    阅读次数:247
创建对象的三种方法
#include<iostream> using namespace std; class Student { public: Student(const char*name,int age,float score); void show(); private: static int m_total ...
分类:其他好文   时间:2020-05-12 13:36:51    阅读次数:51
Xor Sum题解>----(思维+递归)
Xor Sum AtCoder 2272 Time limit : 2sec / Memory limit : 256MB Score : 600 points Problem Statement You are given a positive integer N. Find the number ...
分类:其他好文   时间:2020-05-11 19:09:03    阅读次数:87
Redis数据结构之有序集合sortedset
有序集合(sorted set)用于存储多个字符串元素,它是在集合(set)的基础上给每个元素增加了一个用于 排序的字段(SCORE) ,元素同样不可重复,可以根据分数索引获取元素,此外,提供了根据score获取指定范围以及排序功能 常用命令 添加 zadd :添加数据,返回元素个数 查询 zran ...
分类:其他好文   时间:2020-05-11 01:28:27    阅读次数:86
第十周上机练习
1. package test; public class Student { String name; double score; public Student() { } public Student(String name, int score) { this.name = name; thi ...
分类:其他好文   时间:2020-05-07 15:26:57    阅读次数:48
第十周上机练习
package work; public class Student { String name; double grade; public Student(){ } public Student(String name,double score){ this.name=name; this.gra ...
分类:其他好文   时间:2020-05-07 15:10:57    阅读次数:58
成绩转换
/* xuejineng2016@163.com 2020年5月6日 */ #include<stdio.h> int main(void) { int score; char grade; scanf("%d", &score); switch (score / 10) { case 10: ca ...
分类:其他好文   时间:2020-05-06 20:03:51    阅读次数:72
C++结构体排序
我将结构体 $result$ 存入在一个vector ${vResult}$ 中,最近需要在C++中按照结构体中的 $score$ 进行排序,在网上查找了一些资料,这里对采用的方法记录一下,方便以后使用。 一、引入头文件 #include <algorithm> 二、定义排序方法 struct re ...
分类:编程语言   时间:2020-05-05 12:23:03    阅读次数:63
《信用评分卡模型分数校准》
信用评分卡模型分数校准 风控业务背景 在评分卡建模中,我们通常会把LR输出的概率分(probability)转换为整数分(score),称之为评分卡分数校准(calibration)。事实上,这个阶段称为尺度变换(scaling)或许更为合适。只是有些书中并不严格区分校准和尺度变换,统称为风险校准。 ...
分类:其他好文   时间:2020-05-03 18:59:22    阅读次数:95
[20-05-01][Self-test 28]Java Students' Score
1 package test_6_2; 2 3 public class Student { 4 5 /** 6 * 编写一个程序,已有若干学生数据,包括学号、姓名、成绩,要求输出这些学生数据并计算平均分。 7 */ 8 9 public static int stuNum; 10 public s ...
分类:编程语言   时间:2020-05-01 14:48:13    阅读次数:51
2092条   上一页 1 ... 12 13 14 15 16 ... 210 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!