如何将函数值返回到main函数以在另一个函数中使用?

时间:2016-02-15 02:50:05

标签: c function

/ *我正在尝试让我的calcCost功能正常工作。它不会携带区域变量。任何想法为什么它不起作用?我使用了calcArea函数,但是我可以使用calcCost区域值的区域值吗?* /

#include <stdio.h>
#include <conio.h>
#include <stdlib.h>

// Define Constants
#define SALESTAX .07
#define TILEONE 0.78
#define TILETWO 1.59
#define TILETHREE 0.89
#define TILEONECASE 17.44
#define TILETWOCASE 10.89
#define TILETHREECASE 15.50
#define TILESIZE1 2.25
#define TILESIZE2 0.97222
#define TILESIZE3 1.77777
// Prototypes
void welcomeMessage(void);
char SelectChoice();
double getLength();
double getWidth();
double calcArea(double len, double wid);
double calcCost(double area);
void endMessage(void);
//integar return type, parameters are void,Richard's Flooring main function allows users to calculate room area and buy flooring.
int main (void)
{
//declare variables
double len, wid, area, tileNeeded,subTotal, taxTotal, total,cost;
double *dp;
char answer, myChoice;
dp = &area;


// Greets users and identifities program.
welcomeMessage ();
//Loop continues until user is done calculating area and buying flooring.

    printf("Choice | Dimesions | Price | Sq.FT.per case|\n 1     | 18 x 18   | $%.2lf |         17.44 |\n 2     |  7 x 20   | $%.2lf |         10.89 |\n 3     | 16 x 16   | $%.2lf |         15.50 |\n",TILEONE, TILETWO, TILETHREE);

    myChoice = SelectChoice();
    len = getLength();
    wid = getWidth();
    // calcArea function is a double return type, it calculates the Area entered in by the user, its parameters are double len and double wid
    area = calcArea(len,wid);
    printf("The area of your room is: %g square feet.\n",area);
calcCost(area);
//Provides users with publisher's name.
endMessage ();

return 0;
}
// no return type, tells users what kind of program they are using, and voids any parameters.
void welcomeMessage (void)
{
    printf("Welcome to Richard's Flooring\n");
    system ("pause");
    return ;
}

 // no return type, allows user to select choice
 char SelectChoice()
{
     char myChoice;

     do
     {
         printf("\nWhich tile choice would you like: ");
         scanf(" %c", &myChoice);

         switch(myChoice)
         { 
         case '1':
             printf("You chose choice: 1");
             break;


         case '2':
             printf("You chose choice: 2");
             break;


         case '3':
             printf("You chose choice: 3");
             break;


         default:
             printf("\nINVALID CHOICE 1 - 3 only!");

         }
     }

     while (myChoice > '3'|| myChoice < '1');
     return myChoice;

}

double getLength()
{
  double len;
 // loop continues until positive numbers are entered.
  do
  {
        printf("\nEnter length of room in feet: ");
        scanf(" %lf", &len);
        if (len <= 0)
        printf("\nLength must be positive number.");
  }
  while (len <=0);
  return len;
}


 double getWidth()
{
double wid;
// loop continues until positive numbers are entered.
do
{
    printf("\nEnter width of room in feet: ");
    scanf(" %lf", &wid);
    if (wid <= 0)
        printf("\nWidth must be positive number.");
}
while (wid <=0);
return wid;
}

// Double return type, which is returning Area. Calculates the Area in a  square or rectangle with the formula length * width. Accepts parameters from  double len and double wid.
double calcArea(double len, double wid)
{
    double area;
    area = (len * wid);
    return area;
}

double calcCost(double area)
{
    SALESTAX ;
    double  len, wid, tileNeeded,subTotal, taxTotal, total,cost;
    char answer, myChoice;
    area = calcArea(len,wid);

    do
    {


    char myChoice;
    if (myChoice == '1')
            {
                tileNeeded = area/TILESIZE1;
            }

    else if (myChoice == '2')
            {
                tileNeeded = area/TILESIZE2;
            }

    else if (myChoice == '3')
            {
                tileNeeded = area/TILESIZE3;
            }
    printf("You will need %.2lf pieces of tile\n", tileNeeded);
    subTotal = tileNeeded * TILETHREE;
    printf("Your subtotal is: $%.2lf \n", subTotal);
    taxTotal = subTotal * SALESTAX;
    printf("Your sales tax comes out to be: $%.2lf \n", taxTotal);
    total = taxTotal + subTotal;
    printf("Your grand total is: $%.2lf \n",total);
    printf("Would you like to measure another room?\n y or n:");
    scanf(" %c", &answer);
    }

 while (answer == 'y'|| answer == 'Y');
 }

// no return type, tells users Richard made the program, voids any parameters
void endMessage (void)
{
    printf("\nThese results were provided by Richard Triplett\n");
    system ("pause");
    return ;
}

1 个答案:

答案 0 :(得分:0)

由于您从getLength()返回值,因此您不需要参数:

double getLength()
{

但是,你需要一个变量来存储要返回的值:

    double len;

现在就像你一样得到输入:

    do
    {
        printf("\nEnter length of room in feet: ");

但是,格式字符串中不需要空格:

        scanf("%lf", &len);
        if (len <= 0)
        printf("\nLength must be positive number.");
    }
    while (len <=0);

现在返回值:

    return len;
}

现在在main中,您可以将返回的值分配给变量:

double len;

len = getLength();