LMS知識社群各系上網率圖資處首頁登入
5-3幾天後會花完錢
by 郭怡勝 2017-11-20 21:55:05, 回應(0), 人氣(253)


 /*問題輸入存款若干元(假設有10000元)
每天用掉原來的一半 
求幾天所有的前會花光
*/ 
#include <stdio.h> 

int main(void) 
int total,days=0; 
printf("\n正修科大 40404113 郭怡勝"); 
printf("\n請輸入金額");
scanf("%d",&total); 
while (total != 0) 
total =total/2; 
days++; 
printf("\n第%d天時剩下%d元",days,total);
return 0; 
附件:
1. 5-3.png (16 KB)