『壹』 關於大一的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;
}