摘要: 某公司销售员工的年终奖根据该员工的年销售总额s提成,年销售总额超过1万元才提成,超过部分提成比例如下: 1万 < s < 10万元(包括10万元) 提成7% 10万 < s < 50万元(包括50万元) 提成6% s > 50万元(包括50万元) 提成5%注:超过部分是指后一级相对于前面级的超过部分 阅读全文
posted @ 2020-02-10 13:35 Fabo 阅读(727) 评论(0) 推荐(0) 编辑
摘要: #include"stdio.h"void main(){ int n; printf("请输入一个年份:"); scanf("%d",&n); if((n%4 == 0&&n%100 != 0)||(n%400 == 0)) printf("是闰年"); else printf("不是闰年");} 阅读全文
posted @ 2020-02-10 13:30 Fabo 阅读(154) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>#include<math.h>void main(){ int x1,y1,x2,y2,x3,y3; float s,t,a,b,c; printf("输入三个坐标:"); scanf("%d,%d %d,%d %d,%d",&x1,&y1,&x2,&y2,&x3 阅读全文
posted @ 2020-02-10 13:28 Fabo 阅读(907) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #define pi 3.1415926 int main(){ double a; scanf("%lf", &a); printf("正方形面积:%lf\n", a * a); printf("内接圆面积:%lf\n", pi * a * a / 4); p 阅读全文
posted @ 2020-02-10 13:26 Fabo 阅读(695) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>void main(){ int a; int x,y,z,m; printf("input the number:"); scanf("%d",&a); x=a/1000; y=(a-a/1000*1000)/100; z=(a-a/1000*1000-(a-a 阅读全文
posted @ 2020-02-10 13:24 Fabo 阅读(2640) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>void main(){ int a,b; int x,y,z,m; printf("input the first number:"); scanf("%d",&a); printf("input the second number:"); scanf("%d" 阅读全文
posted @ 2020-02-10 13:22 Fabo 阅读(1839) 评论(0) 推荐(0) 编辑