2018年9月7日金曜日

開発環境

  • OS: macOS High Sierra - Apple
  • Text Editor: Emacs
  • コンパイラー: LLVM/Clang, GCC(gcc)
  • プログラミング言語: C

Head First C ―頭とからだで覚えるCの基本 (David Griffiths (著)、Dawn Griffiths (著)、中田 秀基 (監修)、木下 哲也 (翻訳)、オライリージャパン)の4章(複数のソースファイルの使用 - 分割して構築する)、エクササイズ(p. 165)を取り組んでみる。

エクササイズ(p. 165)

Makefile

cc = cc

all: sample run

sample: sample.c
 cc sample.c -o sample

run: sample
 ./sample

コード

#include <stdio.h>

float total = 0.0;
short count = 0;
short tax_percent = 6;

float add_with_tax(float f) {
  float tax_rate = 1 + tax_percent / 100.0;
  total += f * tax_rate;
  count += 1;
  return total;
}

int main() {
  float val;
  printf("品目の値段: ");
  while (scanf("%f", &val) == 1) {
    printf("ここまでの合計: %.2f\n", add_with_tax(val));
    printf("品目の値段: ");
  }
  printf("\n最終合計: %.2f\n", total);
  printf("品目数: %hi\n", count);
}

入出力結果(Terminal)

$ make
cc sample.c -o sample
./sample
品目の値段: 100
ここまでの合計: 106.00
品目の値段: 200
ここまでの合計: 318.00
品目の値段: 300
ここまでの合計: 636.00
品目の値段: 400
ここまでの合計: 1060.00
品目の値段: 500
ここまでの合計: 1590.00
品目の値段: 

最終合計: 1590.00
品目数: 5
$

0 コメント:

コメントを投稿