FEW MORE CUPS OF COFFEE铪铪

news/2024/7/8 5:07:22

AUG.2,2005

FEW MORE CUPS OF COFFEE
by Kakuji Funegata

Do I have to remind you,
Whom I owe cups of coffee to ?
I am and will be forever in your debt
Until I do you the favor at last.

Is it alright that you I invite
To have some coffee at any time you like ?
To the cup I'll let the coffee be pouring in,
I'll bring you the sugar and the milky cream.

Ask me please, please, would you please,
For few more cups of coffee, all at ease.
The bitter-sweet promise's always been there
Since we departed, which I really care.

    When the milky smell's floating, the coffee getting white,
    Your smile would be my favorite sci-fi lullaby.





http://www.niftyadmin.cn/n/3651720.html

相关文章

动态规划系列(2) leetcode java

假设你正在爬楼梯。需要 n 阶你才能到达楼顶。 每次你可以爬 1 或 2 个台阶。你有多少种不同的方法可以爬到楼顶呢? class Solution {public int climbStairs(int n) {int s 0;int e 1;int tmp 0;while(n-->0){tmp e;es;s tmp;}return e;} } 第二题: 给你…

买卖股票的最佳时机 leetcode java篇

给定一个数组 prices ,它的第 i 个元素 prices[i] 表示一支给定股票第 i 天的价格。 你只能选择 某一天 买入这只股票,并选择在 未来的某一个不同的日子 卖出该股票。设计一个算法来计算你所能获取的最大利润。 返回你可以从这笔交易中获取的最大利润。…

动态规划系列(3) leetcode java篇

第一题: 打家劫舍 你是一个专业的小偷,计划偷窃沿街的房屋。每间房内都藏有一定的现金,影响你偷窃的唯一制约因素就是相邻的房屋装有相互连通的防盗系统,如果两间相邻的房屋在同一晚上被小偷闯入,系统会自动报警。 给定一个代表…

动态规划系列(4) leetcode Java篇

第一题: 跳跃游戏 给定一个非负整数数组 nums ,你最初位于数组的 第一个下标 。 数组中的每个元素代表你在该位置可以跳跃的最大长度。 判断你是否能够到达最后一个下标。 class Solution {public boolean canJump(int[] num) {int len num.length;if(len1){re…

What the heck is H5N1?

What the heck is "H5N1"?PROPOSAL:H5N1 Heal Five, Not OneEXPLANATION:1. Heal the patients.2. Heal each broken heart.3. Heal every lost minds & souls.4. Heal the society.5. Heal the world.

动态规划系列(5) leetcode java 篇

第一题: 最大子数组和 给你一个整数数组 nums ,请你找出一个具有最大和的连续子数组(子数组最少包含一个元素),返回其最大和。 子数组 是数组中的一个连续部分。 class Solution {public int maxSubArray(int[] ns) {int max …

游戏交互设计顶尖大师Chris Crawford最新力作《Chris Crawford on Interactive Storytelling》

游戏交互设计顶尖大师 Chris Crawford 继 2003 年的杰作 Chris Crawford on Game Design ( http://www.informit.com/title/0131460994 )之后,于 2004 年底再出新作,全面展现游戏交互设计之精髓!Chris Crawford on Int…

动态规划系列(6) leetcode java篇

第一题: 乘积最大子数组 给你一个整数数组 nums ,请你找出数组中乘积最大的非空连续子数组(该子数组中至少包含一个数字),并返回该子数组所对应的乘积。 测试用例的答案是一个 32-位 整数。 子数组 是数组的连续子序列。 clas…