salestag.c

来自「tc3 考试系统」· C语言 代码 · 共 33 行

C
33
字号
// Borland C++ - (C) Copyright 1991 by Borland International

/* SALESTAG.C--Example from Getting Started.
   SALESTAG.C calculates a sales slip. */

#include <stdio.h>
#define RATE 0.065                         /* Sales Tax Rate */

float tax (float amount);
float purchase, tax_amt, total;

int main()
{
   char inbuf [130];
   printf("Amount of purchase: ");
   gets(inbuf);
   sscanf(inbuf, "%f", &purchase);

   tax_amt = tax(purchase);
   total = purchase + tax_amt;

   printf("\nPurchase is:  %f", purchase);
   printf("\n        Tax:  %f", tax_amt);
   printf("\n      Total:  %f", total);

   return 0;
}

float tax (float amount)
{
   return(amount * RATE);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?