在这个程序中,我想让用户输入数据,程序将计算他们需要的东西并显示它。我想为这个程序使用while,for和do循环。
到目前为止,我已经成功使用了For循环,但是我对如何为此程序使用While和Do循环有疑问。
有人可以给我一些建议吗?
以下是我的代码:
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<stdlib.h>
float load()
{
float sal = 0.0;
printf("Enter Salary\n");
scanf("%f", &sal);
return sal;
}
float calcRate(float s)
{
if (s > 40000)
return 4.0;
if (s >= 30000 && s <= 40000)
return 5.5;
if (s < 30000)
return 7.0;
}
void calcRaise(float sal, float rate, float *raise, float *totraise)
{
*raise = (sal*rate) / (float)100;
*totraise = *totraise + *raise;
}
void calcNewSal(float sal, float raise, float *newsal, float *totnewsal)
{
*newsal = sal + raise;
*totnewsal = *totnewsal + *newsal;
}
void calcTotSal(float *sal, float *totsal)
{
*totsal = *totsal + *sal;
}
void print(float sal, float rate, float raise, float newsal, float totnewsal, float totraise, float totsal)
{
printf(" %0.2f %0.2f %0.2f %0.2f\n", sal,rate,raise,newsal);
}
void main()
{
float sal = 0.0;
float rate, raise, newsal;
float totraise = 0;
float totnewsal = 0;
float totsal = 0;
printf(" Salary Rate %% Raise New Salary\n");
for (int i=1;i<=7;i++)
{
sal = load();
rate = calcRate(sal);
calcRaise(sal, rate, &raise, &totraise);
calcNewSal(sal, raise, &newsal, &totnewsal);
calcTotSal(&sal, &totsal);
print(sal, rate, raise, newsal, totsal, totraise, totnewsal);
fflush(stdin);
}
printf("Total: %0.2f %0.2f %0.2f \n", totsal, totraise, totnewsal);
system("pause");
}
答案 0 :(得分:1)
您可以按如下方式使用while循环:
int i=1;
while(i<=7) {
sal = load();
rate = calcRate(sal);
calcRaise(sal, rate, &raise, &totraise);
calcNewSal(sal, raise, &newsal, &totnewsal);
calcTotSal(&sal, &totsal);
print(sal, rate, raise, newsal, totsal, totraise, totnewsal);
fflush(stdin);
i++;
}
并且执行如下:
int i=1;
do {
sal = load();
rate = calcRate(sal);
calcRaise(sal, rate, &raise, &totraise);
calcNewSal(sal, raise, &newsal, &totnewsal);
calcTotSal(&sal, &totsal);
print(sal, rate, raise, newsal, totsal, totraise, totnewsal);
fflush(stdin);
i++;
} while(i<=7);
上述两种方法都与您编写的for循环具有相同的效果。迭代次数在这里是硬编码的,所以在&amp;和/或之间不应该有任何明显的差异。这样做,虽然。但是,如果将i初始化为8而不是1,您会注意到while循环块根本不执行,但do-while执行一次。