目前分類:C (23)
- May 13 Tue 2014 11:33
[長知識] C語言 - 新手篇章 - 華氏溫度轉攝氏溫度
- May 13 Tue 2014 11:31
[長知識] C語言 - 新手篇章 - 老闆請問打幾折
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {
int price;
float discounts, total;
printf("老闆請問多少錢?\n");
//取記憶體price的數值
scanf("%i", &price);
printf("老闆請問打幾折?\n");
scanf("%f", &discounts);
//算出total價格
total = price*discounts/10;
//取小數點後2位
printf("打 %.2f 折後為%f", discounts, total);
return 0;
}
- May 13 Tue 2014 11:27
[長知識] C語言 - 新手篇章 - &怎麼用