好心人帮帮我啊,感激不尽!
设计一个字符串类mystring,尽可能使之完善,使之能满足各种需求,要求不能用include(sring.h)。string的功能:stract(联接)strcpy(复制) strcmp(比较) strlen(求长度) strlwr(转换为小写) strupr(转换为大写)
要自己弄哈。不让用string类的哦,功能尽可能全,就是要包括一个构造函数,一个析构函数,一个构造拷贝函数等!!
谢谢大哥大姐姐们先!
给懒人一条路吧,要不这个世界就没有勤快的人了!!!!!! 我是新人!!! #include<stdio.h> void main(void) { int date,month,year; printf("Enter the DATE>>>>"); scanf("%i",&date);
printf("Enter the MONTH>>>>"); scanf("%i",&month);
printf("Enter the YEAR>>>>"); scanf("%i",&year);
if ((date<=31&&month<=12&&year<=3000)||((year%4==0&&year%100!=0)||(year%4==0&&year%400==0))) { printf("The DATE MONTH and YEAR is %i/%i/%i",date,month,year); } else { printf("The DATE MONTH and YEAR is inviabled"); }
}
自己写的