C/Data Type/Short

Материал из C\C++ эксперт
Перейти к: навигация, поиск

Choosing the correct type: short

<source lang="cpp"> /* Choosing the correct type: short */

  1. 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);

}


      </source>