码迷,mamicode.com
首页 >  
搜索关键字:people    ( 2934个结果
spring——通过注解显式的完成自动装配
构建bean文件: public class People { private String name = "小明"; } 编写配置类: @Configuration @Import(ApplicationConfig2.class) public class ApplicationConfig { ...
分类:编程语言   时间:2020-07-28 22:20:26    阅读次数:71
计算学生个人平均成绩
/*程序袁欢,袁欢的博客,www.g-7.net,革启博客 版本:vs2019社区版 功能:计算学生个人平均成绩*/ #include<stdio.h> int main() { int i, j;//循环变量 int score[4][3]; int aver_people[4] = { 0 }; ...
分类:其他好文   时间:2020-07-22 15:29:49    阅读次数:64
初入GO语言-Go语言的%d,%p,%v等占位符的使用
1、首先需要了解哪些占位符分别代表什么 这些是死知识,把常用的记住,不常用的直接查表就行了 golang 的fmt 包实现了格式化I/O函数,类似于C的 printf 和 scanf。 定义示例类型和变量 type Human struct { Name string } var people = ...
分类:编程语言   时间:2020-07-20 15:24:23    阅读次数:75
HDU 2612 Find a way
Pass a year learning in Hangzhou, yifenfei arrival hometown Ningbo at finally. Leave Ningbo one year, yifenfei have many people to meet. Especially a ...
分类:其他好文   时间:2020-07-17 01:14:23    阅读次数:90
日本高中数学的学习范围
日本高中数学的学习范围 高一上学期(数1): 数论(数と式) 整数,小数,分数,有理数,无理数的定义 绝对值的计算,联立不等式的解法,因式分解,对称式 双重根号的计算 集合,逻辑与命题(集合と論理) 集合的概念 充分条件,必要条件 命题的真伪 三种命题:逆,否,逆否 二次函数(二次関数) 二次函数的 ...
分类:其他好文   时间:2020-07-15 10:45:14    阅读次数:125
关于 UAC,Mark Russinovich on the Future of Security
https://www.eweek.com/security/mark-russinovich-on-the-future-of-security Windows IT people everywhere owe thanks to Dr. Mark Russinovich, now a techn ...
分类:其他好文   时间:2020-07-13 16:52:05    阅读次数:92
练习30--else和if
一 代码及执行结果 ex30.py 1 people = 14 2 cars = 15 3 trucks = 10 4 5 if cars > people: 6 print("We should take the cars.") 7 elif cars < people: 8 print("We ...
分类:其他好文   时间:2020-07-13 13:46:48    阅读次数:67
go-方法method
//方法:函数指定接收者之后就是方法,只有某个具体的类型才能调用 package main import "fmt" type people struct { name string gender string } //go中,约定使用类型首字母小写 func (p people) dream() ...
分类:其他好文   时间:2020-07-12 22:10:36    阅读次数:69
1109 Group Photo (25分)
Formation is very important when taking a group photo. Given the rules of forming K rows with N people as the following: The number of people in each ...
分类:其他好文   时间:2020-07-12 18:52:52    阅读次数:63
Python就业班——初识面向对象——练习——People
多重继承_相同方法 1 #!/usr/bin/env python3 2 # coding=utf-8 3 # Version:python3.6.1 4 # Project:practice 5 # File:People.py 6 # Data:2020/7/12 12:04 7 # Autho ...
分类:编程语言   时间:2020-07-12 14:43:14    阅读次数:69
2934条   上一页 1 ... 4 5 6 7 8 ... 294 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!