博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Code Hunt 刷题记录
阅读量:5834 次
发布时间:2019-06-18

本文共 1979 字,大约阅读时间需要 6 分钟。

是微软研究院推出的一个教育类编程游戏站点。游戏玩家,也称为“代码猎人”,

可选择 Java 或 C# 编程语言,需要必须在游戏发现补上缺失的代码片段。
放假无聊在家做了两个chapter,语言选的C#,纯属娱乐:)

00.01

帮你熟悉使用Code Hunt平台的基本操作

00.02

public class Program {    public static int Puzzle(int x) {        return x+1;    }}

00.03

public class Program {    public static int Puzzle(int x) {        return x*2;    }}

00.04

public class Program {    public static int Puzzle(int x, int y) {        return x+y;    }}

01.01

public class Program {    public static int Puzzle(int x) {        return -x;    }}

01.02

public class Program {    public static int Puzzle(int x) {        return x-2;    }}

01.03

public class Program {    public static int Puzzle(int x) {        return x*x;    }}

这道题用计算器一算(1089/33)等于33就找出规律了。

01.04

public class Program {    public static int Puzzle(int x) {        return x*3;    }}

01.05

public class Program {    public static int Puzzle(int x) {        return x/3;    }}

上一道是乘3,这一道是除以3,这样的上下联系在后面还会出现...

01.06

public class Program {    public static int Puzzle(int x) {        return 4/x;    }}

01.07

public class Program {    public static int Puzzle(int x, int y) {        return x-y;    }}

01.08

public class Program {    public static int Puzzle(int x, int y) {         return x+2*y;    }}

01.09

public class Program {    public static int Puzzle(int x, int y) {        return x*y;    }}

01.10

public class Program {    public static int Puzzle(int x, int y) {        return x+y/3;    }}

这一道思考的时间长一些

01.11

public class Program {    public static int Puzzle(int x, int y) {         return x/y;    }}

01.12

public class Program {    public static int Puzzle(int x) {        return x%3;    }}

01.13

public class Program {    public static int Puzzle(int x) {        return x%3+1;    }}

唔...在上一道的基础上联想加一

01.14

public class Program {    public static int Puzzle(int x) {        return 10%x;    }}

01.15

public class Program {    public static int Puzzle(int x, int y, int z) {        return (x+y+z)/3;    }}

看数据非常自然的联想倒平均数

可以看出前两章都非常容易,准备抽空闲时间再试试后面的。

转载地址:http://ufycx.baihongyu.com/

你可能感兴趣的文章
OpenCV 单应矩阵应用:全景图像融合原理
查看>>
SQL Server 存储过程中处理多个查询条件的几种常见写法分析,我们该用那种写法...
查看>>
urianchor
查看>>
阿里云MVP胡磊:一站式开发平台实践之路
查看>>
R语言 朴素贝叶斯分类器①
查看>>
如何从一名普通的程序员进阶成为一名优秀的程序员
查看>>
Android本地化全局对象的实践(2)——SharePreferences
查看>>
iTerm配置导出与迁移方法
查看>>
如何通过Java代码判断当前的环境是否支持JRE 9
查看>>
React-Native 学习第三天:State 制作闪烁文字
查看>>
Linux下安装WebLogic 12c
查看>>
swift 源码地址
查看>>
HTTP 错误 403.14 - Forbidden
查看>>
SQL语句(方便记忆版)
查看>>
mysql-数据定义语句
查看>>
Mysql 创建用户和权限
查看>>
监测浏览器和手机系统
查看>>
Flux7 Docker 系列教程(五):Docker 安全
查看>>
曾相遇:2015.6
查看>>
一步步搭建物联网系统——Python 代码如散文
查看>>