三九宝宝网宝宝教育教学论文

C语言计算工资的代码

12月27日 编辑 39baobao.com

[C语言字符串字母大小写转换]#include<stdio.h> int main() { char c; while((c=getchar())!='#') { if((c>='a'&c<='z') || (c>='A'&c<='Z')) putchar(c^0x20); else putchar(c); } return 0; }...+阅读

你为什么要用;if(y<5,t<=40),建议你看看逗号运算符的用法,、

int main()

{

int y,t;

double m;

scanf("%d %d",&y,&t);

if(y<5 & t<=40) //且的关系

printf("%.2f",m=t*30);

else if(y<5 & t>40)

printf("%.2f",m=40*30+(t-40)*30*1.5);

else if(y>=5 & t<=40)

printf("%.2f",m=t*50);

else

printf("%.2f",m=40*50+(t-40)*50*1.5);

return 0;

}

以下为关联文档:

C语言大小写字符转换#include void main() { char c1,c2; // 定义两个字符c1,c2 c1=getchar(); //从键盘输入一个大写字母,放在c1 printf("%c,%d\n",c1,c1);//输出 你输入的那个大写字母 以及他的ASCII...

c语言大小写字母串转换#include<stdio.h> void main() { char str[256]; int i; gets(str); i=0; while ( str[i]!=0 ) { if ( str[i]>='a' & str[i]<='z' ) str[i]=str[i]-'a'+'A'; else if ( st...

有C语言实现大小写字母转换函数名: tolower 功 能: 把字符转换成小写字母 用 法: int tolower(int c); 程序例: #include #include #include int main(void) { int length, i; char *string = "THIS IS A S...

c语言程序设计:大小写字母转换else 后面没2113有大括号,编译器默认将后一个语句5261作为 else 条件4102满足时的语句,再后1653面一个语句无论专如何都会被执行。属 #include <stdio.h> void main() { char...

简单c语言问题大小写字母转换char *string = "this is my program"; 上面这句话,是把"this is my program"常量的地址赋值给了指针string,因此string成了常量指针,没法再给string指向的内存空间赋上新的值,所以*...

C语言一个薪水计算问题#include<stdio.h> void main() { int h; double s,income; scanf("%d,%lf",&h,&s); if (h<=40) income = h*s; else if((h>=40)&&(h <= 50)) income = 40*s+(h-40)*1.5*s; el...

C语言工资的问题#include#include using namespace std; void input(int a,int b[]); void output(); int hun_num=0,fif_num=0,ten_num=0,fiv_num=0,two_num=0,one_num=0; int main(){ int...

C语言编程问题计算薪水float work_hours=0.0f;float pay=0.0f;int day=0;const cents_per_dollar=100;int pay_in_cent=0;pay_in_cent=(int)(pay*cents_per_dollar);printf("input your pay of a w...

c语言编程题某工种按小时计算工资每月劳动时间小时每小时#include <stdio.h> int main() { int hours; float wage; float salary; scanf("%d%f",&hours,&wage); salary=hours*wage*(1-0.1); printf("the salary should be $f\n",salar...

推荐阅读
图文推荐