跳至主要內容
32-打造一个小超市

0. 目录

  • 小超市例程
  • Java 的世界是一个类和对象的世界

1. 小超市例程

  • Java 就是使用类来描述世界,用类的实例(对象)让世界运转起来
  • 各种操作数据的代码太乱了怎么办?

小超市需要:

  • 超市名称

  • 超市地址

  • 停车位数量

  • 收入总和

  • 商品列表

    • 商品名称

    • 商品 id

    • 商品库存

    • 销售价格

    • 进货成本「购买价格」

  • 商品销售「销售数量」

  • 客户

    • 顾客名字

    • 顾客带了多少钱

    • 顾客是否开车过来


AI悦创原创2024年12月18日...大约 7 分钟Java体系课Java体系课
31-Java 中的 Random 类

你好,我是悦创。

我们来系统学习 Java 中的 Random 类及其用法。Java 提供了 java.util.Random 类用于生成随机数,它是基础随机数生成工具之一。

1. 引入 Random 类

在使用 Random 类之前,需要引入它:

import java.util.Random;

AI悦创原创2024年12月18日...大约 6 分钟Java体系课Java体系课
TFS_VGC104_Assignment8_Instructions Rock-Paper-Scissors Part 2「多伦多电影学院」

LAB #8 DUE DATE: WEEK 11

Title

Rock-Paper-Scissors Part 2

Learning Objectives

Select appropriate control structures used to create games

Instructions

Extend the functionality of the rock paper scissors game to include interactivity using JavaScript. Create an AI to make decisions for player 2, determine the winner after each round and allow the player with the best of five rounds to win the game.


AI悦创原创2024年12月16日...大约 2 分钟
House Prices - Advanced Regression Techniques

Overview:

In this experiment report, you'll complete two parts in order:

First, complete a coding task (i.e., House Prices Prediction), and write iPython/Jupyter code based on the tools provided. You'll submit your code as a ZIP to the email address below.

Second, write a report based on your experimental results. This report should include experimental complete analysis, including data processing, model training, test evaluation, and references. You'll submit this Word report separately. This report should be approximately 1000 +/- 10% words.


AI悦创原创2024年12月15日...大约 9 分钟
TFS_VGC104_Assignment5_Instructions Rock Paper Scissors「多伦多电影学院」

ASSIGNMENT #5

Title Rock Paper Scissors – Part 1
Learning objectives JavaScript Functions
Instructions Lay the foundations for a rock paper scissors game by using html to place the selection buttons (for Rock, Paper, and Scissors) and an area for both player 1 and player 2’s choice to appear.
Create functions for player 1 to make their choice of either Rock, Paper, or Scissors and have their area update accordingly.
Deliverables Functional webpage for the game with clean layout.
Clean and readable code.
Selection images for Rock, Paper, Scissors.
Clicking on a selection image updates player 1’s choice.
Reset Button to clear values to their starting state.

AI悦创原创2024年12月15日...大约 2 分钟
30-Java 中的包和访问修饰符

0. 目录

  • 类多太混乱?用 package 管理
  • 类使用太繁琐怎么办?用 import
  • 属性访问修饰符:public
  • 类的全限定名

1. 类多太混乱?用 package 管理

  • 为了避免类在一起混乱,可以把类放在文件夹里。这时就需要用 package 语句告诉 Java 这个类在哪个 package 里。 package 语句要和源文件的目录完全对应,大小写要一致。
  • package 读作包。一般来说,类都会在包里,而不会直接放在根目录;
  • 不同的包里可以有相同名字的类;
  • 一个类只能有一个 package 语句,如果有 package 语句,则必须是类的第一行有效代码

AI悦创原创2024年12月13日...大约 19 分钟Java体系课Java体系课
流程图「多伦多电影学院」

Create a flowchart would allow a teacher to create a class list of student names stored in an array.

The teacher should be able to individually add each student's name, and indicate when they have finished.

At the end of the teacher's input, the program should print a list of all student's names in the class.


AI悦创原创2024年12月12日...大约 4 分钟
29-像自定义类型一样使用类

1. 类就是一种自定义类型

  • 在类定义中可以使用类,创建类的引用
  • 在类定义中,甚至可以使用类自己的类创建引用
  • 引用类型的缺省值是 null。一个类定义中如果有引用,创建出来的实例,其缺省值是 null

除了 String 是我们 Java 自带的类,其他的类都是我们自己创建的类。CPU、Memory、Storage。

接下来,我们用一个类来把上面串联起来。构成我们自己的手机:


AI悦创原创2024年12月12日...大约 15 分钟Java体系课Java体系课
蒜蓉粉丝虾

1. 食材

龙口粉丝 蒜末 娃娃菜 金针菇 大葱
生姜 小米椒 料酒 砂锅

AI悦创原创2024年12月11日...大约 2 分钟程序员的私房菜
6420final_Fall2024-4 Final-exam

All questions on this exam must be solved with a Probabilistic Programming Language (PPL);

Fall 2024 Final Exam Problem 1

The sinking of the Titanic is one of the most infamous shipwrecks in history. On April 15, 1912, during her maiden voyage, the widely considered “unsinkable” RMS Titanic sank after colliding with an iceberg. Unfortunately, there weren’t enough lifeboats for everyone onboard, resulting in the death of 1,502 out of 2,224 passengers and crew. While there was some element of luck involved in surviving, it seems some groups of people were more likely to survive than others.


AI悦创原创2024年12月8日...大约 6 分钟
葡萄酒质量对比数据分析报告

课程论文内容为根据给定数据进行数据分析,对数据分析结果撰写数据分析报告。

数据集描述如下:

数据集是著名葡萄牙“Vinho Verde”葡萄酒的葡萄酒质量数据集,其中有红酒观测数据1599条,白葡萄酒观测数据4898条。数据中的输出变量是葡萄酒质量 quality。是一个从0(低质量)到10(高质量)的评分。输入变量是葡萄酒的物理化学成分和特性,包括非挥发性酸、挥发性酸、柠檬酸、残余糖分、氯化物、游离二氧化硫、总二氧化硫、密度、pH值、硫酸盐和酒精含量。

数据分析报告中要求报告的内容:

  1. 对数据集进行描述性分析,用直方图显示红葡萄酒和白葡萄酒质量的评分分布并进行文字汇报。

  2. 分析并汇报红葡萄酒和白葡萄酒的平均质量评分是否存在差别。

  3. 计算11个输入指标间的相关系数矩阵,汇报哪些变量与葡萄酒质量正相关,哪些是负相关。

  4. 分别随机抽取红葡萄酒和白葡萄酒的200条观测数据,以散点图的形式对比11个输入变量对葡萄酒质量的影响(两种酒放在一个图中方便对比,最好用带有回归线的散点图,这样对比更清楚)。对散点图进行分析。

  5. 自变量标准化以后使用最小二乘估计分别对两种葡萄酒的观测值进行多元线性回归,对回归结果进行解释和分析。

  6. 撰写数据分析报告总结。

  7. 数据分析python代码以附录的形式放在数据分析报告最后,代码要有代码标注(可以用Notebook文件转换成PDF文件附上)


AI悦创原创2024年12月7日...大约 12 分钟
考试

Step1

  1. False
  2. False
  3. False
  4. False
  5. False
  6. False
  7. True
  8. False
  9. True
  10. False
  11. True
  12. False
  13. False
  14. False
  15. True
  16. True
  17. False
  18. False

Step2


AI悦创原创2024年12月5日...大约 1 分钟
番茄肥牛饭

1. 食材

洋葱🧅 肥牛卷 西红柿 淀粉
黑胡椒 生抽 老抽 蚝油 蕃茄酱 香油
香葱 糖心蛋(可选)

AI悦创原创2024年12月4日...大约 2 分钟程序员的私房菜
番茄锅底

1. 食材

  1. 大葱
  2. 生姜
  3. 香叶
  4. 番茄
  5. 蕃茄酱
  6. 蚝油

2. 步骤

  1. 冻番茄去皮(冷冻——> 开十字口——>热水一泡——>就可以去皮);
  2. 去皮番茄切碎;(勤劳的可以使用破壁机);
  3. 热锅——>热油——>香叶、葱、姜(炒出香味)——>倒入冻番茄块、蕃茄酱;(炒出沙)
  4. 加入:盐、糖、蚝油;
  5. 小火熬煮,表面冒红油就可以了;

AI悦创原创2024年12月4日...大约 1 分钟程序员的私房菜
VGC104-SCRIPTINGFORGAMES-LAB6-INSTRUCTIONS「多伦多电影学院」

LAB #6 DUE DATE: WEEK 9

Title

Number Wizard Part 2

Learning Objectives

Select appropriate control structures used to create games

Instructions

Extend the functionality from Number Wizard Part 1 to allow the wizard ito make the guesses. The wizard should guess a number between 1 and 100. The player will then indicate if the number is higher, lower, or correct.


AI悦创原创2024年12月3日...大约 1 分钟
Fall 2024 Machine Learning Final Competition Guidelines(text)

Introduction

Ancient Chinese artwork holds profound cultural and historical significance, reflecting the philosophical, spiritual, and aesthetic values of various dynasties. However, inferring the creation period of calligraphy and painting works remains a challenging task, primarily due to the subtle characteristics of works from different eras and variations in preservation conditions. In this competition, our goal is to leverage machine learning techniques to predict the dynasty of these artworks based on the scanned images.


AI悦创原创2024年12月1日...大约 4 分钟
Fall 2024 Machine Learning Final Competition Guidelines

[Fall 2024] Machine Learning Final Competition Guidelines

Version: November 27th, 2024

Introduction

Ancient Chinese artwork holds profound cultural and historical significance, reflecting the philosophical, spiritual, and aesthetic values of various dynasties. However, inferring the creation period of calligraphy and painting works remains a challenging task, primarily due to the subtle characteristics of works from different eras and variations in preservation conditions. In this competition, our goal is to leverage machine learning techniques to predict the dynasty of these artworks based on the scanned images.


AI悦创原创2024年12月1日...大约 4 分钟
通知
关于编程私教&加密文章