#include <stdio.h>
void main()
{
double lr,jj,lr_10,lr_20,lr_40,lr_60,lr_100;//数轴定义奖金 lr=利润 jj=奖金
printf("请输入当年利润:万元");
scanf("%d",lr);//接收输入
//计算
lr_10=(lr-10)*0.75;
lr_20=lr_10+(lr-20)*0.5;
lr_40=lr_20+(lr-40)*0.3;
lr_60=lr_40+(lr-60)*0.15;
lr_100=lr_60+(lr-100)*0.1;
//条件运行
if (lr<10)
printf("奖金为:%fl",lr*.0.1);
else if(10<=lr<=20)
printf("奖金为:%fl",lr_10);
else if(20<=lr<=40)
printf("奖金为:%fl",lr_20);
else if(40<=lr<=60)
printf("奖金为:%fl",lr_40);
else if(60<=lr<=100)
printf("奖金为:%fl",lr_60);
else if(lr>100)
printf("奖金为:%fl",lr_100);
}
以上是小弟写的一个小程序,小弟初C++
程序可以编译 一运行就出错。
提示程序错误 0x00402348指引的0xcccccccc 不能为written
跪求解答。。。
[此贴子已经被作者于2007-7-25 16:18:08编辑过]