codeforces 546A-C语言解题报告
Posted DQ_CODING
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codeforces 546A-C语言解题报告相关的知识,希望对你有一定的参考价值。
题目解析
1.输入 k(成本),n(拥有的钱),w(要买的个数),输出还需要向朋友借多少钱?
举例:
输入:
3 17 4
输出:
13
2.注意:
1)第i个,需要i*k个价钱,所以需要使用for循环运算花费
2)当拥有的钱足够买时,不需要借钱,输出为0
代码
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
int k,n,w,count=0,need=0;
scanf("%d %d %d",&k,&n,&w);
for(int i=1;i<=w;i++)
{
count+=i*k;
}
if(count-n>0)
{
need=count-n;
}else
need =0;
printf("%d",need);
system("pause");
getchar();
return 0;
}
以上是关于codeforces 546A-C语言解题报告的主要内容,如果未能解决你的问题,请参考以下文章