最新 最热

hdu1088

#include <stdio.h> #include <string.h> int main() { char s[10000]; int len; int cnt = 0; while(~scanf("%s",s)) { ...

2018-06-04
0

hdu1004

//c//https://github.com/WEIZIBIN/acm/blob/master/hdu1004.c#include <stdio.h>#include <string.h>int main(){int i, n, j;char s[1005][15];int count[1005] =...

2018-06-04
1

strlen()

头文件:#include<string.h>使用char*s="GoldenGlobalView";printf("%s has %d chars",s,strlen(s));作用:返回字符串长度。遇到“”后返回,不包含结束符“”。 sizeof返回的是变量所占用的内存数,不是实际长度。并且,s...

2018-05-28
1

原 HDOJ 1002 A + B Pro

题目链接在此☞http://acm.hdu.edu.cn/showproblem.php?pid=1002     这题也比较简单,只需要开三个长度为1000的char数组来分别储存a、b、

2018-05-18
0