5 3
water
来源/作者: CCF中学生计算机程序设计入门篇练习3.2.1
版权所有 © 中国计算机学会 中国计算机学会拥有本题目(含题面、数据)的版权
所有管理员添加的题目 使用此版权/授权形式
1 #include<iostream> 2 #include<cmath> 3 using namespace std; 4 int tot=0; 5 int main() 6 { 7 int m,w; 8 cin>>m>>w; 9 if(m+w<10) 10 { 11 cout<<"water"; 12 return 0; 13 } 14 else 15 { 16 if(m>w) 17 { 18 cout<<"tree"; 19 return 0; 20 } 21 else 22 { 23 cout<<"tea"; 24 } 25 } 26 return 0; 27 }