首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴liYX9553的代码贴全部
1 #!/bin/bash
  2 
  3 date #显示当前日期
  4 
  5 year=$(date +%Y)
  6 a=$(date +%m)
  7 b=$(date +%e)
  8 #b=8
  9 echo "please enter you birthday months:"#输入你的生日的月份
 10 read month
 11 if [ $month -gt 12 ]
 12 then
......................
阅读全部 | 2015年5月18日 21:01
include<stdio.h>
  2 
  3 long str16_num10(char *str);// 形参str是字符串所给的16进制数。
  4                            //返还值x是字符串的10进制数。
  5 int ch16toi(char ch);//返回字符ch对应16进制数。
  6 
  7 int main()
  8 {
  9         long s = 0;
 10         char str[] = "f";
 11         s = str16_num10(str);
 12         printf("%d\n",s);
......................
阅读全部 | 2015年4月30日 20:33
#include<stdio.h>
  2 
  3 int year_loap(int n);//判断形参n是否为润年。返回值1或2.
  4 int year_num(int yy,int mm,int dd);//计算当前月份,为这一年的第几天。
  5 
  6 int main()
  7 {
  8         int year = 2012, month = 5, day =23;
  9         int x = 0;
 10 
 11         x = year_num(year,month,day);
 12         printf("%d\n",x);
......................
阅读全部 | 2015年4月30日 20:28
1
liYX9553