#include <stdio.h>
int main()
{
printf("Please enter the number of cups: ");
double cups, pingtuo, ounce, spoon, teaspoon;
scanf("%lf", &cups);
pingtuo = cups / 2;
ounce = cups * 8;
spoon = ounce / 2;
teaspoon = spoon / 3;
printf("the number of pingtuo is %lf.\n", pingtuo);
printf("the number of ounce is %lf.\n", ounce);
printf("the number of spoon is %lf.\n", spoon);
printf("the number of teaspoon is %lf.\n", teaspoon);
return 0;
}