C/C++教程

(C++)201709-1 打酱油

本文主要是介绍(C++)201709-1 打酱油,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
#include<cstdio>
#include<algorithm>
using namespace std;

//贪心问题,优先级:剩的钱购买5瓶就买5瓶,不够看够不够买三瓶,再不够看够不够买一瓶 
int main(){
	
	int start,left,num=0;//初始的钱,当前剩下的钱,买到的瓶数 
	scanf("%d",&start);
	left=start;
	while(1){
		if(left>=50){
			left-=50;
			num+=7;
		}else if(left>=30){
			left-=30;
			num+=4;
		}else if(left>=10){
			left-=10;
			num+=1;
		}else{
			break;
		}
	} 
	
	printf("%d\n",num);
	
	return 0;
} 
这篇关于(C++)201709-1 打酱油的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!