当前位置:首页 » 编程语言 » c语言求士兵的金币数
扩展阅读
webinf下怎么引入js 2023-08-31 21:54:13
堡垒机怎么打开web 2023-08-31 21:54:11

c语言求士兵的金币数

发布时间: 2023-08-05 01:47:50

‘壹’ 关于大一的c语言问题,韩信点兵。。

intx=1;
while(x%5!=1||x%6!=5||x%7!=4||x%11!=10)x++;
printf("%d",x);

‘贰’ 今年的普及组第一题,c语言!有错误吗 题目: 国王给骑士奖励,第一天一金币,第二三天两金币

#include <stdio.h>
int main()

{
freopen("coin.in", "r", stdin);
freopen("coin.out", "w", stdout);
int n,i,j;
scanf("%d", &n);
int ans = 0, count=0;
i=1;
for(i=1;i<=n;i++)
{
for(j=1;j<=i;j++)
{
ans+=i;
count++;
if(count==n)
{
printf("%d", ans);
fclose(stdin);
fclose(stdout);
return 0;
}

}

}

fclose(stdin);
fclose(stdout);
return 0;
}