关于起征点什么的就不贴了,上代码: #include <stdio.h>main(){float a,e,t;scanf("%f",&a);e=a-3500;if (e<=0) t=0;else if (e<=1500) t=0.03*e;else if (e<=4500) t=0.1*e-105;else if (e<=9000) t=0.2*e-555;else if (e<=350
1.查询今日的所有数据select * from 表名 where datediff(day,字段名,getdate())=02.查询昨日的所有数据select * from 表名 where datediff(day,字段名,getdate()-1)=03.查询当天日期在一周年的数据selcet * from 表名 where datediff(week,字段名,getdate()-1)=04.