Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
118500 | 任斌 | 利用指针编写strlen函数 | C++ | Accepted | 1 MS | 276 KB | 459 | 2025-05-04 12:09:28 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int sl(char *p){ int cnt=0; while(*p!='\0'){ cnt++; p++; } return cnt; } int main(){ char a[1001]; int b; cin>>a; b=sl(a); cout<<b<<endl; return 0; }