这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在讨论《最后一个点re》回复:
谢谢
在讨论《最后一个点re》回复:
@[tommyfj](/user/462003) 请教一下for循环中的strlen 谢谢 ~~萌新不太懂~~
```cpp #include #include using namespace std; int main() { char s[110] ; scanf("%s", s); for(int i=0;s[i]!='\O';i++) if ('a'<= s[i] && s[i] <= 'z') s[i] -= 'a'-…
在讨论《样列过了 测评没过 求助》回复:
谢谢!
```cpp #include using namespace std; int main() { int a=0,b,l,ans,n; cin>>n; for(int z=1;z >b; if(b a&&l==1) {ans++;l=0;} a=b; } cout<<ans; return 0; } ``` 萌新 希…
在讨论《请问为什么re》回复:
哦哦知道了 谢谢
```cpp #include using namespace std; int main(){ int n,a[10],num[10]={0}; cin>>n; for(int i=1;i >a[i]; while (n--){ int ans=0; for (int i=1;i >x; for(int j=1;i<…
在讨论《再次看完了公告 请问照着书上的代码写算抄袭吗?》回复:
谢谢大家
在讨论《再次看完了公告 请问照着书上的代码写算抄袭吗?》回复:
@[STA_Morlin](/user/347089) 我第一次发的时候说出错了 返回上一页。 不好意思 我去删掉另一篇吧
在讨论《50分求助 跟着书上的代码写的》回复:
谢谢 以后多注意一下细节
```cpp #include using namespace std; int main() { char a, b, c, d, e, f, g, h, i, j; int check; scanf("%c-%c%c%c-%c%c%c%c%c-%c",&a,&b,&c,&d,&e,&f,&g,&h,&i,&j);…
在讨论《60分求助 跟着教材写的》回复:
谢谢大家 我去改改 再学习一下sort和swap 感谢
```cpp #include using namespace std; int main(){ int a,b,c; scanf("%d %d %d",&a,&b,&c); if (a<=b&&b<=c) printf("%d %d %d\n",a,b,c); else if (a<=c&&c<=b) printf(…