最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

CF 996A - Hit the Lottery

2023-06-24 09:35 作者:您是打尖兒還是住店呢  | 我要投稿

Allen has a LOT of money. He has n dollars in the bank. For security reasons, he wants to withdraw it in cash (we will not disclose the reasons here). The denominations for dollar bills are 1, 5, 10, 20, 100. What is the minimum number of bills Allen could receive after withdrawing his entire balance?

艾倫有很多錢。 他在銀行有 n 美元。 出于安全考慮,他想以現(xiàn)金的方式提?。ㄎ覀冞@里不會(huì)透露原因)。 美元鈔票的面額為 1、5、10、20、100。艾倫提取全部余額后最少可以收到多少?gòu)堚n票?

------------------------------------------------------------

看來(lái)Allen的錢并不多啊。。。

其實(shí)就是取余,依次循環(huán)即可;;

下面是代碼:

import java.util.Scanner;


public class A996 {

? ? public static void main(String[] args) {

? ? ? ? Scanner sc=new Scanner(System.in);

? ? ? ? int n=sc.nextInt();

? ? ? ? sc.close();

? ? ? ? int cnt=0;

? ? ? ? int[]arr={100,20,10,5,1};

? ? ? ? int i=0;

? ? ? ? while(n>0&&i<5){

? ? ? ? ? ? cnt+=n/arr[i];

? ? ? ? ? ? n=n%arr[i];

? ? ? ? ? ? i++;

? ? ? ? }

? ? ? ? System.out.println(cnt);

? ? }

}


沒(méi)錯(cuò)完全是湊字?jǐn)?shù)的。不好意思。

CF 996A - Hit the Lottery的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國(guó)家法律
宁陵县| 鸡东县| 镇原县| 高邑县| 尉犁县| 淮滨县| 贵阳市| 韩城市| 依安县| 蒙山县| 西安市| 阜城县| 孟津县| 施秉县| 清新县| 洪湖市| 宁夏| 常熟市| 平湖市| 乌拉特后旗| 永年县| 花莲市| 逊克县| 东海县| 延安市| 阿拉善左旗| 泰顺县| 奇台县| 尼木县| 林周县| 高阳县| 张北县| 铜陵市| 扶绥县| 当涂县| 淮南市| 咸阳市| 敖汉旗| 乌兰察布市| 琼中| 黄山市|