- UID
- 32468
注册时间2007-6-1
阅读权限10
最后登录1970-1-1
周游历练
该用户从未签到
|
引自第八阁论坛:http://bbs.chinadbg.cn/forum-7-1.html
飞翔技术论坛:http://www.powk.net/bbs/forumdisplay.php?fid=4&page=1
输入某年某月某日,判断这一天是这一年的第几天?程序设计时要利用 switch case 语句主要目的就认识和使用分支结构。
要注意一点,闰年的二月份。
天圆地方的Delphi
- procedure TForm1.Button1Click(Sender: TObject);
- var
- MonthNum,DayNum:integer;
- begin
- DayNum:=0;
- Case MonthOf(now())-1 of
- 1:DayNum:=31;
- 3:DayNum:=31*2;
- 4:DayNum:=31*2+30;
- 5:DayNum:=31*3+30;
- 6:DayNum:=31*3+30*2;
- 7:DayNum:=31*4+30*2;
- 8:DayNum:=31*5+30*2;
- 9:DayNum:=31*5+30*3;
- 10:DayNum:=31*6+30*3;
- 11:DayNum:=31*7+30*3;
- 12:DayNum:=31*7+30*4;
- end;
- if ((YearOf(now())mod 4)=0)and (MonthOf(now())=2) then DayNum:=DayNum+29
- else DayNum:=DayNum+28;
- DayNum:=DayNum+DayOf(now());
- ShowMessage(IntToStr(DayNum));
- end;
复制代码
真要实现这个功能的话,可用如下:
- procedure TForm1.Button2Click(Sender: TObject);
- begin
- showmessage(inttostr(dayoftheyear(now())));
- end;
复制代码
freesoft,C代码:注意,闰年且输入月份大于3时需考虑多加一天。
- #include "stdio.h"
- #include "conio.h"
- main()
- {
- int day,month,year,sum,leap;
- printf("\nplease input year,month,day\n");
- scanf("%d,%d,%d",&year,&month,&day);
- switch(month) /*先计算某月以前月份的总天数*/
- {
- case 1:sum=0;break;
- case 2:sum=31;break;
- case 3:sum=59;break;
- case 4:sum=90;break;
- case 5:sum=120;break;
- case 6:sum=151;break;
- case 7:sum=181;break;
- case 8:sum=212;break;
- case 9:sum=243;break;
- case 10:sum=273;break;
- case 11:sum=304;break;
- case 12:sum=334;break;
- default:printf("data error");break;
- }
- sum=sum+day; /*再加上某天的天数*/
- if(year%400==0||(year%4==0&&year%100!=0)) /*判断是不是闰年*/
- leap=1;
- else
- leap=0;
- if(leap==1&&month>2) /*如果是闰年且月份大于2,总天数应该加一天*/
- sum++;
- printf("It is the %dth day.",sum);
- getch();
- }
复制代码
kill203,我的第三个C++程序
- #include <iOStream>
- using namespace std;
- main()
- {
- int day,month,year,sum,leap;
- cout<<"please input year,month,day \n"<<endl;
- cin>>year;
- cin>>month;
- cin>>day;
- switch(month) //先计算某月以前月份的总天数
- {
- case 1:sum=0;break;
- case 2:sum=31;break;
- case 3:sum=59;break;
- case 4:sum=90;break;
- case 5:sum=120;break;
- case 6:sum=151;break;
- case 7:sum=181;break;
- case 8:sum=212;break;
- case 9:sum=243;break;
- case 10:sum=273;break;
- case 11:sum=304;break;
- case 12:sum=334;break;
- default:printf("data error");break;
- }
- sum=sum+day; //再加上某天的天数
- if(year%400==0||(year%4==0&&year%100!=0)) //判断是不是闰年
- leap=1;
- else
- leap=0;
- if(leap==1&&month>2) //如果是闰年且月份大于2,总天数应该加一天
- sum++;
- cout<<"It is the"<<sum<<"th day."<<endl;
- }
复制代码
在些总结一下以前的知识
今天是周未,有此以不方便来,所以我今天只做前4贴的一些总结,以前4贴主要是用实例告诉大家一些基础的东西。我只做C的总结,因为我只会这个。
比如用到的:
数据类型的定义: int 整形, float 单精度或叫实型 ,char 字符弄
运算符:
1.算术运算符
用于各类数值运算。包括加(+)、减(-)、乘(*)、除(/)、求余(或称模运算,%)、自增(++)、自减(--)共七种。
2.关系运算符
用于比较运算。包括大于(>)、小于(<)、等于(==)、 大于等于(>=)、小于等于(<=)和不等于(!=)六种。
3.逻辑运算符
用于逻辑运算。包括与(&&)、或(||)、非(!)三种。
条件判断: if(A>B){A++}。。 else{B++} 意思是 如果A>B就A加1---否则B1
循环:for 主要用在知道循环次数的循环中,whil与do 。。。while 主要用在不知道循环次数,通过程序运行结果来判断是否终止循环。
数组:数组的定义 int A[10] ,注意一点其实字符串是按数组处理的。
字符串的基本操作:
字符串处理函数, 大致可分为字符串的输入、输出、合并、修改、比较、转换、复制、搜索几类。 使用这些函数可大大减轻编程的负担。用于输入输出的字符串函数, 在使用前应包含头文件"stdio.h" ; 使用其它字符串函数则应包含头文件"string.h"。 下面介绍几个最常用的字符串函数。
1.字符串输出函数 puts 格式: puts (字符数组名) 功能:把字符数组中的字符串输出到显示器。 即在屏幕上显示该字符串
- #include"stdio.h"
- main()
- {
- static char c[]="BASIC\ndBASE";
- puts(c);
- }
- static char c[]="BASIC\ndBASE";
- puts(c);
复制代码
从程序中可以看出puts函数中可以使用转义字符, 因此输出结果成为两行。puts函数完全可以由printf函数取代。 当需要按一定格式输出时,通常使用printf函数。
2.字符串输入函数gets 格式: gets (字符数组名) 功能:从标准输入设备键盘上输入一个字符串。 本函数得到一个函数值,即为该字符数组的首地址。
- #include"stdio.h"
- main()
- {
- char st[15];
- printf("input string:\n");
- gets(st);
- puts(st);
- }
复制代码
可以看出当输入的字符串中含有空格时,输出仍为全部字符串。说明gets函数并不以空格作为字符串输入结束的标志, 而只以回车作为输入结束。这是与scanf函数不同的。
3.字符串连接函数strcat 格式: strcat (字符数组名1,字符数组名2) 功能:把字符数组2中的字符串连接到字符数组1 中字符串的后面,并删去字符串1后的串标志“\0”。本函数返回值是字符数组1的首地址。
- #include"string.h"
- main()
- {
- static char st1[30]="My name is ";
- int st2[10];
- printf("input your name:\n");
- gets(st2);
- strcat(st1,st2);
- puts(st1);
- }
- static char st1[30]="My name is ";
- int st2[10];
- printf("input your name:\n");
- gets(st2);
- strcat(st1,st2);
复制代码
本程序把初始化赋值的字符数组与动态赋值的字符串连接起来。 要注意的是,字符数组1应定义足够的长度,否则不能全部装入被连接的字符串
4.字符串拷贝函数strcpy 格式: strcpy (字符数组名1,字符数组名2) 功能:把字符数组2中的字符串拷贝到字符数组1中。串结束标志“\0”也一同拷贝。字符数名2, 也可以是一个字符串常量。这时相当于把一个字符串赋予一个字符数组。
- #include"string.h"
- main()
- {
- static char st1[15],st2[]="C Language";
- strcpy(st1,st2);
- puts(st1);printf("\n");
- }
- static char st1[15],st2[]="C Language";
- strcpy(st1,st2);
复制代码
本函数要求字符数组1应有足够的长度,否则不能全部装入所拷贝的字符串。
5.字符串比较函数strcmp 格式: strcmp(字符数组名1,字符数组名2) 功能:按照ASCII码顺序比较两个数组中的字符串,并由函数返回值返回比较结果。
字符串1=字符串2,返回值=0;
字符串2〉字符串2,返回值〉0;
字符串1〈字符串2,返回值〈0。
本函数也可用于比较两个字符串常量,或比较数组和字符串常量。
- #include"string.h"
- main()
- {
- int k;
- static char st1[15],st2[]="C Language";
- printf("input a string:\n");
- gets(st1);
- k=strcmp(st1,st2);
- if(k==0) printf("st1=st2\n");
- if(k>0) printf("st1>st2\n");
- if(k<0) printf("st1<st2\n");
- }
- {
- int k;
- static char st1[15],st2[]="C Language";
- printf("input a string:\n");
- gets(st1);
- k=strcmp(st1,st2);
- if(k==0) printf("st1=st2\n");
- if(k>0) printf("st1>st2\n");
- if(k<0) printf("st1<st2\n");
- }
复制代码
本程序中把输入的字符串和数组st2中的串比较,比较结果返回到k中,根据k值再输出结果提示串。当输入为dbase时,由ASCII 码可知“dBASE”大于“C Language”故k〉0,输出结果“st1>st2”。
6.测字符串长度函数strlen 格式: strlen(字符数组名) 功能:测字符串的实际长度(不含字符串结束标志‘\0’) 并作为函数返回值。
- #include"string.h"
- main()
- {
- int k;
- static char st[]="C language";
- k=strlen(st);
- printf("The lenth of the string is %d\n",k);
- }
复制代码
我们还用到了一些函数:
scanf: 从基本输入设备键盘读入数据
printf: 从基本输入设备显示器输出数据
floor:取整
getch: 暂停在DOS窗口
飞翔技术论坛"tzlaoliu"
Delphi提供了现成的函数了
- Edit2.Text:=IntToStr(DayOfTheYear(StrToDate(Edit1.Text)));
- ShowMessage('今天是今年的第'+IntToStr(DayOfTheYear(StrToDate(Edit1.Text)))+'天');
- 函数核心原型部分
- <!--StartFragment-->function DecodeDateFully(const DateTime: TDateTime; var Year, Month, Day, DOW: Word): Boolean;
- const
- D1 = 365;
- D4 = D1 * 4 + 1;
- D100 = D4 * 25 - 1;
- D400 = D100 * 4 + 1;
- var
- Y, M, D, I: Word;
- T: Integer;
- DayTable: PDayTable;
- begin
- T := DateTimeToTimeStamp(DateTime).Date;
- if T <= 0 then
- begin
- Year := 0;
- Month := 0;
- Day := 0;
- DOW := 0;
- Result := False;
- end else
- begin
- DOW := T mod 7 + 1;
- Dec(T);
- Y := 1;
- while T >= D400 do
- begin
- Dec(T, D400);
- Inc(Y, 400);
- end;
- DivMod(T, D100, I, D);
- if I = 4 then
- begin
- Dec(I);
- Inc(D, D100);
- end;
- Inc(Y, I * 100);
- DivMod(D, D4, I, D);
- Inc(Y, I * 4);
- DivMod(D, D1, I, D);
- if I = 4 then
- begin
- Dec(I);
- Inc(D, D1);
- end;
- Inc(Y, I);
- Result := IsLeapYear(Y);
- DayTable := @MonthDays[Result];
- M := 1;
- while True do
- begin
- I := DayTable^[M];
- if D < I then Break;
- Dec(D, I);
- Inc(M);
- end;
- Year := Y;
- Month := M;
- Day := D + 1;
- end;
- end;
复制代码
21st[P.Y.G]
虽然题目让用switch,我还是用我自己的方式处理。没有作输入检查,基本思想是时空转换。
language: c
- #include<stdio.h>
- int main()
- {
- int tb[12]={31,28,31,30,31,30,31,31,30,31,30,31};
- int year,month,day;
- scanf("%d,%d,%d",&year,&month,&day);
- int i,total=0;
- total+=!(year%4)&&month>2?1:0;
- for(i=month-2;i>=0;i--)
- {
- total+=tb[i];
- }
- total+=day;
- printf("%d\n",total);
- return 0;
- }
复制代码 |
|