Mine Picker

अनुशंसित स्तरस्तर
5+
About 10 years ago, an omen appeared in offices everywhere: if an employee is staring too intently at his screen and occasionally clicks with the mouse with the same intensity, he's most likely playing Minesweeper. For anyone who has forgotten, and for others who missed this era due to their age: Minesweeper is one of the most popular office games that shipped with Microsoft Windows. Even today, if you're sitting at a computer running this operating system, Minesweeper is either pre-installed (just type "Minesweeper" in the Windows search box) or you can download it free from the Microsoft Store. Many Linux builds, such as KDE and GNOME, also acquired similar games. Unlike most other "time killers", this game presents the perfect balances of logical moves and random moves, making Minesweeper very exciting and simultaneously... somewhat less pointless than other such games. So, we have a game board divided into squares. Some of them contain "mines", but we don't know how many there are or where they are. Our goal is to reveal all of the unmined squares without getting blown up. You reveal a square with a left click. If it doesn't contain a mine, then a number appears that represents the number of mines adjacent to the revealed space. Now you need to do some thinking and guess which cells can be revealed and which should be marked as mined. And so it continues until you win or explode. Windows developers created this toy to help humans learn to use the mouse (yes, there was a time when computers didn't have mice and you had to be content with just the keyboard). Actually, the history of Minesweeper stretches farther back than even Microsoft. Its predecessors were available on mainframes as early as the sixties of the last century? But we digress... Right now, we're talking about creating our own version of Minesweeper! The rules for our "probabilistic brainteaser" will be exactly those described above. We've already divided this difficult task into subtasks on CodeGym and we'll tell you what to do. Be brave.
टिप्पणियां (187)
  • लोकप्रिय
  • नया
  • पुराना
टिप्पणी लिखने के लिए आपको साइन इन करना होगा
Hoist
स्तर 32 , San Diego, United States
6 जनवरी, 02:40
private static final String MINE = "\uD83D\uDCA3"; private static final String MINE = "💣";
mayao
स्तर 1 , Chengdu, China
19 दिसंबर 2023, 08:19
I think Minesweeper game is a little annoying (complicated). but the coding process is wonderful.
DokiDoki
स्तर 0 , China
16 अक्टूबर 2023, 07:14
奥德赛
Anonymous #11407906
स्तर 0 , France
10 अक्टूबर 2023, 19:57
comment créer une nouvelle classe ,j'ai pas trouvé l'onglet arborescence des classess
Anonymous #11344047
स्तर 1 , Nigeria
15 मई 2023, 20:15


27 अप्रैल 2023, 14:46
/* Comment has been deleted */
27 अप्रैल 2023, 14:46
/* Comment has been deleted */
Hoist
स्तर 32 , San Diego, United States
26 जनवरी 2023, 06:14
Cool Section here ! Lucky pick vs Threading ! lol Just like the file scaffolding in JavaScript frameworks or Salesforce cloud platform to build out the different code containers -- and pulling in some pre-built functions and User Interface libraries to configure. ---> this thread is Great --- CG game development is a Hot topic !
Мирэвис Channel
स्तर 1 , San Francisco, United States
19 जनवरी 2023, 11:52
package
com.codegym.games.minesweeper;
import
com.codegym.engine.cell.*;
public class
MinesweeperGame
extends
Game { }
Anonymous #11254523
स्तर 2 , Brno, Czech Republic
11 जनवरी 2023, 14:20
Why it does not show the score?
mayao
स्तर 1 , Chengdu, China
19 दिसंबर 2023, 08:17
that is a question