當前位置:首頁 » 編程語言 » 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;
}