Case
Case-8
Case: Campbell Soup Co.
Comparative Financial Statements
Exhibit CC.3 CAMPBELL SOUP COMPANY Balance Sheets Year11 Year 10 Year 9
Assets Current assets: Cash and cash equivalents Other temporary investments Accounts receivable Inventories Prepaid expenses Total current assets Plant assets, net of depreciation Intangible assets, net of amortization Other assets Total assets Liabilities and Shareowners’ Equity Current liabilities: Notes payable Payable to suppliers and others Accrued liabilities Dividend payable Accrued income taxes Total current liabilities Long-term debt Other liabilities, mainly deferred tax Shareowner’s equity: Preferred stock; authorized 40,000,000 sh.; none issued Capital stock, $0.15 par value; authorized 140,000,000 sh.; issued 135,622,676 sh. Capital surplus Earnings retained in the business Capital stock in treasury, at cost Cumulative translation adjustments Total shareowner’s equity Total liabilities and shareowners’ equity $ 178.90 12.80 527.40 706.70 92.70 $ 1,518.50 $ 1,790.40 435.50 404.60 $ 4,149.00 $ 282.20 482.40 408.70 37.00 67.70 $ 1,278.00 $ 772.60 305.00 — 20.30 107.30 1,912.60 (270.40) 23.60 $ 1,793.40 $ 4,149.00 $ 80.70 22.50 624.50 819.80 118.00 $ 1,665.50 $ 1,717.70 383.40 349.00 $ 4,115.60 $ 202.30 525.20 491.90 32.30 46.40 $ 1,298.10 $ 805.80 319.90 — 20.30 61.90 1,653.30 (107.20) 63.50 $ 1,691.80 $ 4,115.60 $ 120.90 26.20 538.00 816.00 100.40 1,601.50 1,540.60 466.90 323.10 3,932.10 271.50 508.20 392.60 29.70 30.10 1,232.10 629.20 292.50 — 20.30 50.80 1,775.80 (70.70) 2.10 1,778.30 3,932.10
Financial Statement Analysis
K R Subramanyam John J Wild
McGraw-Hill/Irwin
Copyright © 2009 by The McGraw-Hill Companies, Inc. All rights reserved.
Case-2
Case-5
Reporting on Financial Statement Analysis
•
– – –
A good analysis report typically contains at least six sections devoted to:
Executive summary. Brief summary focused on important analysis results; it launches the analysis report. Analysis overview. Background material on the company, its industry, and its economic environment. Evidential matter. Financial statements and information used in the analysis. Assumptions. Identification of important assumptions regarding a company’s industry and business environment, and other important assumptions for estimates and forecasts, including its business strategy. Crucial factors. Listing of important favorable and unfavorable factors, both quantitative and qualitative. Inferences. Includes forecasts, estimates, interpretations, and conclusions drawing on all prior sections of the report.
– – – – – Special industry conditions Government regulations Social concerns Political visibility Understanding accounting peculiarities
Case-7
Case: Campbell Soup Co.
Preliminary Financial Analysis
Case: Campbell Soup Co.
Comparative Financial Statements
Exhibit CC.2 CAMPBELL SOUP COMPANY Income Statements (millions) Year 10 Year 9 Year 8 $ 6,205.8 $ 4,258.2 980.5 290.7 53.7 111.6 (17.6) 3.3 14.7 339.1 $ 6,034.2 $ 171.6 13.5 (5.7) $ 179.4 175.0 $ 4.4 0 $ 4.4 $ 0.03 126.60 $ 5,672.1 $ 4,001.6 818.8 252.1 47.7 94.1 (38.3) 19.3 32.4 343.0 $ 5,570.7 $ 101.4 10.4 (5.3) $ 106.5 93.4 $ 13.1 0 $ 13.1 $ 0.10 129.30 $ 4,868.9 $ 3,392.8 733.3 232.6 46.9 53.9 (33.2) 16.6 (3.2) 40.6 $ 4,480.3 $ 388.6 6.3 (6.3) $ 388.6 147.0 $ 241.6 32.5 $ 274.1 $ 2.12* $ 129.30 Year 11 Net sales $ 6,204.1 Costs and expenses: Cost of products sold $ 4,095.5 Marketing and selling expenses 956.2 Administrative expenses 306.7 Research and development expenses 56.3 Interest expense 116.2 Interest income (26.0) Foreign exchange losses, net 0.8 Other expense (income) 26.2 Divestitures, restructuring, & unusual charges 0.0 Total costs and expenses $ 5,531.9 Earnings before equity in affil. & M.I. $ 672.2 Equity in earnings of affiliates 2.4 Minority interests (7.2) Earnings before taxes $ 667.4 Taxes on earnings 265.9 Earnings before cumulative effect $ 401.5 Cumulative effect of change for taxes 0 Net earnings $ 401.5 Earnings per share $ 3.16 Weighted-average shares outstanding 127.00 Year 7 $ 4,490.4 $ 3,180.5 626.2 213.9 44.8 51.7 (29.5) 4.8 (9.5) 0.0 $ 4,082.9 $ 407.5 15.1 (4.7) $ 417.9 170.6 $ 247.3 0 $ 247.3 $ 1.90 $ 129.90 Year 6 $ 4,286.8 $ 3,082.7 544.4 195.9 42.2 56.0 (27.4) 0.7 5.5 0.0 $ 3,900.0 $ 386.8 4. (3.9) $ 387.2 164.0 $ 223.2 0 $ 223.2 $ 1.72 129.50
case语句的注意事项
case语句的注意事项case语句是编程中常用的一种流程控制语句,用于根据不同的条件执行不同的代码块。
在使用case语句时需要注意以下几个方面。
1. 每个case后面要加上冒号(:),表示该条件下要执行的代码块。
在代码块中,可以包含一条或多条语句。
2. 在每个case之间要使用break语句,用于跳出switch语句,否则会继续执行下一个case中的代码块。
如果希望多个条件执行相同的代码块,可以省略break语句。
3. 在case语句中应该包含一个default分支,用于处理除了已列出的条件外的情况。
default分支通常放在最后,但不是必须的。
4. case语句中的条件可以是常量表达式,也可以是变量。
常量表达式是指在编译时就可以确定值的表达式,例如整数、字符或枚举类型。
5. case语句中的条件可以使用比较运算符(例如==、!=、<、>等)来比较值,也可以使用逻辑运算符(例如&&、||、!等)来组合条件。
6. case语句中的条件可以是多个值的组合,使用逗号分隔。
例如:case 1, 2, 3: 表示当条件为1、2或3时执行相应的代码块。
7. case语句中的条件可以是范围,使用两个点(..)表示。
例如:case 1..10: 表示当条件在1到10之间(包括1和10)时执行相应的代码块。
8. case语句中的条件可以嵌套,即在一个case块中嵌套另一个switch语句。
这样可以根据更复杂的条件进行判断。
9. 在case语句中可以使用一些特殊的关键字,例如fallthrough和continue。
fallthrough关键字用于执行下一个case中的代码块,而不管条件是否匹配。
continue关键字用于跳过当前case,继续执行下一个case。
10. 如果case语句中的条件没有匹配任何一个case,且没有default分支,则不会执行任何代码块。
总结一下,使用case语句时需要注意语法的正确性,确保每个case后面都有冒号,每个case块中的代码块都被正确地包含在大括号中。
case语句的三种形式
case语句的三种形式case语句是一种常见的条件控制结构,用于在多个选项中选择执行不同的代码块。
在大多数编程语言中,case语句的语法形式主要分为以下三种:简单形式、范围形式和条件表达式形式。
简单形式是case语句最常见的形式,它结构简单、易于理解和使用。
简单形式的case语句一般包含一个选择表达式和多个case分支。
选择表达式的值会与每个case分支的值进行比较,如果匹配成功,则执行对应的代码块。
下面是一个C++的简单形式case语句的示例:```switch (choice) {case 1:cout << "You chose option one." << endl;break;case 2:cout << "You chose option two." << endl;break;case 3:cout << "You chose option three." << endl;break;default:cout << "Invalid choice." << endl;break;}```上述示例中,选择表达式是`choice`,根据不同的值,分别执行对应的代码块。
如果选择表达式的值与任何一个case分支的值都不匹配,那么会执行default分支的代码块。
范围形式是一种略微复杂一些的case语句形式,它允许我们匹配一个范围内的值。
范围形式的case语句一般包含一个选择表达式和多个case分支,每个case分支包含一个范围值。
下面是一个Java的范围形式case语句的示例:```switch (score) {case 90-100:System.out.println("Excellent!");break;case 80-89:System.out.println("Good job!");break;case 70-79:System.out.println("Keep it up!");break;default:System.out.println("Need improvement.");break;}```上述示例中,选择表达式是`score`,根据不同的范围值,分别执行对应的代码块。
case语句的注意事项
case语句的注意事项case语句是一种在编程中常用的条件控制结构,用于根据不同的条件执行不同的操作。
在使用case语句时,有一些注意事项需要注意,以确保程序的正确性和可读性。
下面列举了十个关于case语句的注意事项。
1. 选择合适的数据类型:在case语句中,要选择适合条件判断的数据类型。
例如,如果需要判断一个整数变量的取值范围,应使用整数类型的变量作为条件。
2. 考虑所有可能的情况:在编写case语句时,要确保考虑到所有可能的情况。
如果有遗漏的情况,可能会导致程序出错或产生意外的结果。
3. 使用默认情况:为了处理未包含在case语句中的情况,可以使用默认情况。
默认情况通常放在case语句的最后,用于处理所有未匹配到的情况。
4. 避免重复的条件:在case语句中,应避免出现重复的条件。
如果出现重复的条件,可能会导致程序逻辑混乱或产生不可预测的结果。
5. 注意条件的顺序:在case语句中,条件的顺序是很重要的。
条件的顺序决定了程序的执行流程。
应根据具体需求,合理安排条件的顺序。
6. 注意break语句的使用:在case语句中,每个条件执行完毕后,应使用break语句跳出switch语句。
如果没有使用break语句,程序会继续执行下一个条件的代码。
7. 使用注释说明条件的含义:在编写case语句时,可以使用注释说明每个条件的含义。
这样可以提高代码的可读性,方便他人理解和维护代码。
8. 不要嵌套过多的case语句:在使用case语句时,应避免嵌套过多的情况。
过多的嵌套会导致代码难以理解和维护,应尽量简化代码结构。
9. 使用合适的缩进和格式:在编写case语句时,要注意使用合适的缩进和格式。
良好的代码格式可以提高代码的可读性,方便他人理解和修改代码。
10. 使用case语句的替代方案:在某些情况下,可以考虑使用其他语句或数据结构替代case语句。
例如,使用if-else语句或字典等数据结构来实现条件控制。
case在c语言中的意思
case在c语言中的意思
在 C 语言中,case 表示 switch 语句中的分支。
switch 语句可以根据一个表达式的结果(整数类型)来执行相应的分支代码,每个分支用一个 case 标签标识。
如果表达式的值与某个分支的 case 常量匹配,则执行该分支的代码。
例如:
```c
switch (a) {
case 1:
printf("a 等于 1\n");
break;
case 2:
printf("a 等于 2\n");
break;
default:
printf("a 不等于 1 和 2\n");
break;
}
```
在上面的例子中,根据变量 a 的值,执行相应的分支代码。
如果 a 等于 1,则输出 "a 等于 1";如果 a 等于 2,则输出 "a 等于2";否则,输出 "a 不等于 1 和 2"。
注意,每个 case 标签后面都要加上 break 语句,以跳出 switch 语句。
默认情况下,如果没有匹配的分支,则执行 default 分支的代码。
case是什么意思case时态变形同义词辨析解释
case是什么意思-case时态变形-同义词辨析解释case是什么意思-case时态变形-同义词辨析解释case【释义】英 [keɪs] 美 [keɪs]n. 情况;实例;箱vt. 包围;把装于容器中n. (Case)人名;(英)凯斯;(西)卡塞;(法)卡斯【变形】[ 过去式 cased 过去分词 cased 现在分词 casing ]【短语】Case study 案例研究 ; 案例分析 ; 个案研究 ; 案例教学Use case 用例 ; 用例 ; 使用案例 ; 使用实例Cold Case 铁证悬案 ; 铁证悬案 ; 铁证悬疑 ; 铁证悬案case law 判例法 ; 案例法 ; 法体系 ; 案例法Vocative case 呼格 ; 呼格Accusative case 宾格 ; 宾格 ; 受格 ; 宾位criminal case 刑事案件 ; 刑事 ; 刑事案 ; 刑事诉讼Instrumental case 工具格 ; 工具格Absolutive case 通格 ; 通格【词义辨析】example,instance,case,sample,illustration,specimen这些名词均有“例子、事例”之意。
example普通用词,指能代表同类事物性质或一般规律的典型例子。
instance多指用于说明、支持或反证一般事实或理论的事例。
case多指需要加以认真研究的实例,如病例,案例等。
sample通常指样品。
illustration指用来说明、解释某种理论或看法而引用的例证。
specimen可与sample换用,但常指人或物中选出的有代表性部分,或指供科研、化验或检验用的标本。
【双语例句】用作名词 (n.)In your case, we are prepared to be lenient.根据你的情况,我们拟予从宽处理But that is not always the case, sometimes the table can turn.但事情并不一定都是这样,有时情况会发生改变。
case语句
case语句case语句1.什么是casecase语句和if类似,也是⽤来判断,只不过当判断条件较多时,使⽤case语句会⽐if更加⽅便2.case使⽤场景在⽣产环境中我们总会遇到⼀个问题需要根据不同预案,那么我们要处理这样的问题⾸先要根据可能出现的情况写出对应的预案,然后根据选择来加载不同的预案⽐如服务的启停脚本,我们⾸先要写好启动,停⽌重启的预案,然后根据不同的选择来加载不同的预案3.case基础语法case 变量 in条件 1)执⾏代码块1;;条件 1)执⾏代码块2;;条件 1)执⾏代码块3;;条件 1)执⾏代码块4;;*)不匹配后命令序列esac1. case演⽰⽰例:需求2:使⽤case实现nginx状态监控脚本。
stub_statussh nginx_status.shUSAGE nginx_status.sh { Active | accepts | handled | requests | Reading | Writing |Waiting }1.nginx开启状态监控[root@manager case]# cat /etc/nginx/conf.d/test.confserver {listen 80;server_name ;location / {index index.html;}location /nginx_status {stub_status;}}3.case[root@manager case]# cat case-5.sh#!/bin/bash# Author: QQ: 552408925# Date: 2019-10-30# FileName: case-5.sh# URL: https://# Description:HostName=Nginx_status_file=nginx.statusNginx_Status_Path=nginx_statuscurl -sH Host:${HostName} http://127.0.0.1/${Nginx_Status_Path} >${Nginx_status_file}case $1 inactive)echo $(( $(awk '/Active connections/ {print $NF}' ${Nginx_status_file}) -1 ));;accepts)echo $(( $(awk 'NR==3 {print $1}' ${Nginx_status_file}) -1 ));;handled)echo $(( $(awk 'NR==3 {print $2}' ${Nginx_status_file}) -1 ));;requests)echo $(( $(awk 'NR==3 {print $3}' ${Nginx_status_file}) -1 ));;*)echo "USAGE: $0 { active | accepts | handled | requests | Reading | Writing | Waiting }" exit 1esacNgixn启停脚本#!/bin/bash# Author: QQ: 552408925# Date: 2019-10-30# FileName: case-4.sh# URL: https://# Description:source /etc/init.d/functionsnginx_pid=/var/run/nginx.pidcase $1 instart)if [ -f $nginx_pid ];thenif [ -s $nginx_pid ];thenaction "Nginx 已经启动" /bin/falseelserm -f $nginx_pidsystemctl start nginx &>/dev/nullif [ $? -eq 0 ];thenaction "Nginx启动成功" /bin/trueelseaction "Nginx启动失败" /bin/falsefifielsesystemctl start nginx &>/dev/nullif [ $? -eq 0 ];thenaction "Nginx启动成功" /bin/trueelseaction "Nginx启动失败" /bin/falsefifi;;stop)if [ -f $nginx_pid ];thensystemctl stop nginx && \rm -f $nginx_pidaction "Nginx is stopped" /bin/trueelseecho "[error] open() "$nginx_pid" failed (2: No such file or directory)"fi;;status)if [ -f $nginx_pid ];thenecho "nginx (pid $(cat $nginx_pid)) is running..."elseecho "nginx is stopped"fi;;reload)#1.nginx没有启动直接报错#2.nginx启动了,先检查配置⽂件语法#如果nginx语法没问题,则reload#如何nginx语法有问题#提⽰⽤户是否进⼊对应的错误⾏数修改 [ y | n ]# y 进⼊修改# n 退出操作if [ -f $nginx_pid ];thennginx -t -c /etc/nginx/nginx.conf &>nginx.errrc=$?if [ $rc -eq 0 ];thenaction "Nginx is Reloaded" /bin/trueelsengx_conf=$(cat nginx.err |awk -F "[ :]" 'NR==1 {print $(NF-1)}')ngx_line=$(cat nginx.err |awk -F "[ :]" 'NR==1 {print $NF}')read -p "是否进⼊ ${ngx_conf} 配置⽂件的 ${ngx_line} ⾏修改: [ y | n ] " tt case $tt iny)vim $ngx_conf +${ngx_line};;n)exit 1esacfielseaction "Nginx 没有启动" /bin/falsefi;;*)echo "USAGE: $0 {start|stop|status|restart}"exit 1esac。
case语句用法
case语句用法Case语句是一种多分支语句,它包含一个主体和若干case子句。
case语句通常用于实现某种分类、路由的功能。
它的使用比if语句更具有使用效率和可维护性。
案例实施主体部分:Case语句的主体语句包括两个部分:case和endcase。
它的格式如下:[case expression]case value1: statement1;...endcase;其中,case语句的主体由两个关键字case和endcase组成。
前一个关键字case指明本案例的主题,一般情况下,表达式expression用于提供案例的主题,它可以是变量、常量或表达式(表达式里必须是变量)。
该子句被称为case子句,它由关键字case和一个或多个case值以及一条语句组成。
有多个case子句时,他们要排列在一行。
当expression的值等于某个case子句的值时,执行case子句中的statement1语句;default子句在没有case值与expression相匹配时,执行default子句中的statement_default语句;endcase关键字表示case语句的结束,也是case语句关键字的最后一个;实例:根据学生的分数来给出学生等级。
#include <stdio.h>int main(){int score;printf("请输入学生的成绩:");scanf(“%d”,&score);switch (score/10){// 根据score/10的值来匹配case子句case 10:printf("A"); break;case 9:printf("B"); break;case 8:printf("C"); break;case 7:printf("D"); break;default:printf("E"); break;}return 0;}输入:学生分数:82输出:C。
高考英语词汇:有关case的几个重要短语与搭配
高考英语词汇:有关case的几个重要短语与搭配1. in any case 不管怎样,无论如何。
如:In any case, you’ll have to be at the station by nine. 无论如何你九点钟得赶到车站。
It may rain tomorrow, but we are going home in any case. 明天可能下雨,但不管怎样我们都打算回家去。
2. in case(1) 如果,万一(用作连词,表示条件)。
如:In case I forget, please remind me about it. 万一我忘记,请请醒我一下。
(2) 以防,免得(用作连词,表示目的)。
如:Take your umbrella (just) in case it rains. 带上雨伞,以防下雨。
Be quiet in case you should wake the baby. 安静些,免得把婴儿吵醒。
(3) 以防万一,免得(用作副词):You had better carry some money in case. 你最好带些钱,以防万一(要用)。
It may not rain, but you had better take an umbrella in case. 可能不会下雨,但你最好还是带把雨伞,以防万一。
3. in case of 如果,万一,以防(用作介词,表示条件或目的)。
如:In case of fire, call 119. 万一失火,就打119电话。
Take an umbrella with you in case of rain. 带把雨伞,以防下雨。
4. in no case 绝不,在任何情况下都不。
如:You should in no case tell her about it. 你绝不能把此事告诉她。
注:若置于句首,句子用倒装。
如:In no case should you give up. 你绝不能放弃。
CASE的概念
(11)安全和版本控制工具
13
第4节 集成化软件工程环境
• ISEE(Integrated Software Engineering Environment)是 按照一定的理论/概念模型把支持软件开发的计算机系统软件、 工具集、信息库、网络管理、人员与场地设施等全部开发资源 进行有效灵活的集成,系统有效的支持基于软件工程理论、技 术、方法和规范所进行的软件开发的全部过程和所有活动。 • 目标:按照软件工程的理论、方法和规范建立一个自然和谐、 高效可靠乃至完全智能和自动化的软件生产流水线,真正实现 软件工程和软件产业的工业化。
作业
• Page 84、85 1. (1)、(2)、(5) 2. (1)~(5) 3. (1)~(6) 4. (4)
26
软件工程知识点和学习方法
• 领会和掌握一些基本概念: 软件及软件工程 软件工程的基本内容、目标、原则、标准 软件生命周期 软件开发过程模型、方法、CASE工具、环境 面向对象的基本概念和面向对象的建模 • 学习方法: 抓住软件也是产品的概念 抓住工程化的思想 抓住面向对象和传统软件工程的结构化方法的不同点
⑦ 实施结构化的模型和设计,尽可能达到准确、一致。
⑧ 协调多个图表上的信息,检查信息的一致性,并集中检查信 息的准确性、一致性和完整性。
10
CASE工具的分类
(1)信息工程工具 (2)过程建模和管理工具 (3)项目计划工具 (4)风险分析工具 (5)项目管理工具 (6)需求跟踪工具 (7)度量和管理工具 (8)文档工具 (9)系统软件工具 (10)质量保证工具 (11)数据库管理工具 (12)软件配置管理工具 (13)分析和设计工具 (14)原形和仿真工具 (15)界面设计和开发工具 (16)原型工具 (17)编程工具 (18)集成和测试工具 (19)静态分析工具 (20)动态分析工具 (21)测试管理工具 (22)客户/服务器测试工具 (23)再工程工具
以case结尾的单词
37 words found ending in case1.Case【 ♏♓♦】n.事, 病例, 案例, 情形, 场合, 讼案, 容器, (语法)格2.encase【♓⏹♏♓♦】vt.装入, 包住, 围3.incase【♓⏹♏♓♦】v.装进箱,筒,鞘等容器内, 包4.uncase【 ✈⏹♏♓♦】vt.除套, 从箱子取出, 暴露5.carcase【♊☜♦】n.(动物)尸体, (船, 房)架子6.discase【♎♓♦♏♓♦】v.除去外罩, 脱衣7.nut 【⏹✈♦】n.坚果, 螺母, 螺帽, 难解的问题8.nutcase【⏹✈♦ ♏♓♦】疯子9.bookcase【 ♌☺♏✋♦】n.书架, 书柜10.cardcase【♊♎♏✋♦】名片盒11.gear 【♈♓☜ 】 n.齿轮, 传动装置; v.调整, (使)适合, 换档12.gearcase【♊♈✋☜♏✋♦】n.齿轮箱; 变速箱壳体; (自行车)齿轮罩13.hardcase【♊♒♎♏✋♦】adj.强健的,倍受艰苦锻炼的,强悍的14.notecase【 ⏹☜☺♦♏✋♦】n.<主英>钱包, 皮夹子15.seed 【♦♓♎】n.种子, 萌芽, 原由, 根据, 子孙, 精液; vt.播种, 结实, 成熟,去...籽; vi.结实, 播种16.seedcase【♊♦♓♎♏✋♦】果皮17.showcase【 ☞☜☺♏✋♦】展柜, n.(商店或博物馆的玻璃)陈列橱, <主美>显示优点的东西18.slipcase【♊♦●✋☐♏✋♦】书套19.suitcase【 ♦◆♦♏♓♦】n.手提箱, 衣箱20.brain【♌❒♏♓⏹】n.脑, 头脑21.braincase【♊♌❒♏✋⏹♏✋♦】脑壳22.brief【♌❒♓♐】n.摘要, 大纲; adj.简短的, 短暂的; vt.摘要, (军事)下达简令23.briefcase【 ♌❒✋♐♏✋♦】n.(扁平的, 柔韧的, 装文件, 书报的)公文包24.crank【 ❒✌☠】adj.脾气暴燥的, 易怒的; n.【机】曲柄, 奇想; vt.【机】装曲柄; vi.【机】转动曲柄25.crankcase【 ❒✌☠♏♓♦】n.【机】曲柄轴箱26.lowercase【♊●☜☺☜♊♏✋♦】n.小写字母27.uppercase【♊✈☐☜♊♏✋♦】大写字母28.replicase【 ❒♏☐●♓♏♓♦】n.【生化】复制酶29.smear【♦❍♓☜】v.涂上, 抹掉, 涂污, 诽谤, 抹去, 弄脏; n.油迹, 污点, 涂片, 釉,中伤30.smearcase【♊♦❍✋☜♏✋♦】n.农家鲜干酪31.smiercase【♊♦❍✋☜♏✋♦】农家鲜干酪32.stair【♦♦☪☜】n.(阶梯的某)一级, 楼梯33.staircase【 ♦♦♏☜♏✋♦】楼梯34.watchcase【♊♦♦☞♏✋♦ ♊♦】表壳35.pillow【 ☐♓●☜◆】n.枕头, 枕垫36.pillowcase【 ☐✋●☜☺♏✋♦】枕套37.uricase【 ◆☜❒♓♏♓♦】n.【生化】尿酸酶。
