解题思路:
注意事项:
参考代码:
import java.util.Scanner; public class Main9 { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int n=sc.nextInt(); int count=0; int []salary=new int[n]; int []money={100,50,10,5,2,1}; for (int i = 0; i < salary.length; i++) { salary[i]=sc.nextInt(); for (int j = 0; j < money.length; j++) { while (salary[i]>=money[j]) { salary[i]-=money[j]; count++; } } } System.out.println(count); } }
0.0分
0 人评分
九宫重排 (C++代码)浏览:2194 |
Pascal三角 (C语言代码)格式错误浏览:551 |
简单的a+b (C语言代码)浏览:641 |
C语言程序设计教程(第三版)课后习题6.8 (C++代码)浏览:614 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:638 |
sizeof的大作用 (C语言代码)浏览:1591 |
整除问题 (C语言代码)浏览:594 |
简单的a+b (C语言代码)浏览:600 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:527 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:587 |