//根据题意设定初始变量值//然后 一个while循环去操作//每换得一个瓶子,换的那个减去要做相应的数目//然后喝了啤酒后, 各数量加1//直到不符合要求。跳出循环 1 class Beer{ 2 3 protected $uni_gai = 4; //每4个瓶盖1瓶 4 protected $uni_bottle = 2; //每两个瓶子换1瓶 5 protected $uni_beer = 2; //每瓶2块钱 6 protected $rs = array();//存取结果 7 protected $total = 0; //当前买了啤酒的数量 8 protected $gai = 0; //当前有多少个啤酒 9 protected $empty_bottle = 0; //空瓶子10 11 public function __construct($money){12 $cur = $money / $this->uni_beer;13 $this->total = $cur;14 $this->gai = $cur;15 $this->empty_bottle = $cur;16 }17 18 public function run(){19 while($this->gai > 0 || $this->empty_bottle > 0){20 if($this->gai >= $this->uni_gai){21 $this->deal_num('gai');22 }23 if($this->empty_bottle >= $this->uni_bottle){24 $this->deal_num('empty_bottle');25 }26 27 $this->check_overflow();28 }29 return $this->rs;30 }31 32 public function deal_num($type){33 if($type == 'gai'){34 $this->gai -= $this->uni_gai;35 }else{36 $this->empty_bottle -= $this->uni_bottle;37 }38 $this->gai++;39 $this->empty_bottle++;40 $this->total++;41 }42 public function check_overflow(){43 if($this->gai < $this->uni_gai && $this->empty_bottle < $this->uni_bottle){44 $this->rs['gai'] = $this->gai;45 $this->rs['total'] = $this->total;46 $this->rs['empty_bottle'] = $this->empty_bottle;47 $this->gai = 0;48 $this->empty_bottle = 0;49 }50 }51 public function _print(){52 echo 'gai:', $this->gai;53 echo '<br>';54 echo 'empty_bottle:', $this->empty_bottle;55 echo '<br>';56 echo 'total', $this->total;57 echo '<hr>';58 }59 }60 61 $peer = new Beer(10);62 $rs = $peer->run();63 print_r($rs);
打印的结果是: Array ( [gai] => 3 [empty_bottle] => 1 [total] => 15 )
盖子 3个, 空瓶子 1个, 总共喝了15瓶啤酒

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version
Chinese version, very easy to use
