C/Data Type/Short

Материал из C\C++ эксперт
Версия от 10:22, 25 мая 2010; Admin (обсуждение | вклад) (1 версия: Импорт контента...)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Choosing the correct type: short

/* Choosing the correct type: short */
#include <stdio.h>
void main()
{
  const float per = 4.5f;
  short a = 23500;            
  short b = 19300;                       
  short c = 21600;                       
  float revenue = 0.0f;                  
  short total = a+b+c; /* Calculate quarterly total */
  /* Output monthly sales and total for the quarter */
  printf("\n a: %d\n b: %d\n c: %d",a,b,c);
  
  printf("\n Total: %d",total);
  /* Calculate the total revenue and output it */
  revenue = total/150*per;
  printf("\nSales revenue  is:$%.2f\n",revenue);
}