2015年4月30日 计算两个日期天数,写的代码
摘要:1 #include 2 #include 3 #include 4 #define ISYEAR(year) (year%400==0) ||(year%4==0&&year%100!=0) 5 int DayofYear(int year, int month, int day); 6 7 8 int main(int argc, char *arg...
阅读全文
posted @
2015-04-30 15:22
IT小不点
阅读(227)
推荐(0) 编辑
2015年4月29日 dayofweek
摘要:#include <stdio.h>#include <stdlib.h>int DayofYear(int year, int month, int day);#define ISYEAR(year) (year%400==0) ||(year%4==0&&year%100!=0) int mai
阅读全文
posted @
2015-04-29 20:38
IT小不点
阅读(136)
推荐(0) 编辑
2015年4月28日
摘要:#include <stdio.h>#include <stdlib.h>#include <ctype.h> int main(int argc, const char * argv[]) { // 统计键盘输入的字符中字母,数字,其他字符的个数,ctl+z结束 //打印出统计图 int alp,
阅读全文
posted @
2015-04-28 23:30
IT小不点
阅读(114)
推荐(0) 编辑
2015年4月28日----高大上的数组,进制准换,最多是35进制
摘要:#include <stdio.h>#include <stdlib.h>#include <string.h> int main(int argc, char *argv[]){ /*十进制准换城任何进制的程序*/ int ival, base; //ival 是十进制数,base 是要转换的进制
阅读全文
posted @
2015-04-28 20:41
IT小不点
阅读(278)
推荐(0) 编辑
2015年4月27日---C语言:输出特殊图案,请在c环境中运行,看一看,Very Beautiful!
摘要:恢复内容开始 题目:输出特殊图案,请在c环境中运行,看一看,Very Beautiful! 1.程序分析:字符共有256个。不同字符,图形不一样。 2.程序源代码: [code=c] #include "stdio.h" main() { char a=176,b=219; printf("%c%c
阅读全文
posted @
2015-04-27 15:59
IT小不点
阅读(2336)
推荐(0) 编辑
2015年4月27日
摘要:企业利润计算 我的第一个留存代码。 题目:企业发放的奖金根据利润提成。利润(I)低于或等于10万元时,奖金可提10%;利润高 于10万元,低于20万元时,低于10万元的部分按10%提成,高于10万元的部分,可可提 成7.5%;20万到40万之间时,高于20万元的部分,可提成5%;40万到60万之间时
阅读全文
posted @
2015-04-27 14:44
IT小不点
阅读(187)
推荐(0) 编辑