解题思路:
做完菜之后要减去用掉的数量
注意事项:
参考代码:
import java.util.Scanner; public class 学做菜 { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int a=sc.nextInt(); int b=sc.nextInt(); int c=sc.nextInt(); int d=sc.nextInt(); int a1=0,b1=0,c1=0,d1=0,e1=0; //西红柿炒蛋 while (a>=2&&b>=1&&d>=2) { a-=2; b-=1; d-=2; a1++; } //酸辣鸡 while (a>=1&&b>=1&&c>=1&&d>=1) { a-=1; b-=1; c-=1; d-=1; b1++; } //宫爆鸡 while (c>=2&&d>=1) { c-=2; d-=1; c1++; } //水煮西红柿 while (b>=3) { b-=3; d1++; } while (a>=1&&d>=1) { a-=1; d-=1; e1++; } System.out.printf("%d\n%d\n%d\n%d\n%d",a1,b1,c1,d1,e1); } }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:849 |
时间转换 (Java代码)浏览:617 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:580 |
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:545 |
C语言程序设计教程(第三版)课后习题6.5 (C++代码)浏览:487 |
a+b浏览:452 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:727 |
分解质因数 (C++代码)浏览:1561 |
A+B for Input-Output Practice (I) (C语言代码)浏览:598 |
【魔板】 (C++代码)浏览:1236 |