这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
```CPP #include using namespace std; int main() { int n,m,k,x,y; cin>>n>>m>>k; int a[n][n]; memset(a,0,sizeof(a)); for(int i=2;i >x>>y; a[x][y]=1; a[x-1][y]=1;…
```cpp #include using namespace std; int main() { int o; cin >> o; o /= 52; for(int i = 100;i > 0;i--) { int k = o - i * 7; if(k % 21 == 0 && k!=0) { k /= 21; c…
```cpp #include using namespace std; int main() { long long a, c, i,d=1; cin >> a >> c; for (i = 1; i <= c; i++) { d = d * c; } cout << a; return 0; }
在讨论《c++RE》回复:
@[wangyinghao](/user/453759) 懂了 ```#include using namespace std; int main() { int a,b,d; char c; cin>>a; cin>>b; cin>>c; if(c!='+'&&c!='*'&&c!='-'&&c!='/') { co…
```cpp #include using namespace std; int main() { int a,b,d; char c; cin>>a; cin>>b; cin>>c; if(c!='+'&&c!='*'&&c!='-'&&c!='/') { cout<<"Invalid operator!"; } i…
`````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````` #include using namespace std; int…
在讨论《求助》回复:
``` 多学几年就会了
在讨论《?》回复:
@[_•́へ•́╬_](/user/90693) ``` what
在讨论《?》回复:
@[ConanOI_Official](/user/561674) ``` 怎么做?
在讨论《?》回复:
@[linxuanrui](/user/857323) ``` 是
``` #include using namespace std; int main() { int a[100010],i,j,k,x,n; cin>>n; i=1;a[1]=n; while(n!=1) { if(n%2==0) n=n/2; else { n=n*3+1; i++; a[i]=n;} } for(…
```cpp #include using namespace std; const int N=105; int a[N]; int main() { int i,j,k,x; cin>>x; i=0; while(x!=0) { i++; a[i]=x; cin>>x; } for(j=1;j>=1;j--) co…
```cpp #include using namespace std; long double a; int main() { scanf("%Lf",&a); printf("%.12Lf",a); return 0; }
```cpp #include using namespace std; long double a; int main() { scanf("%Lf",&a); printf("%.3Lf",a); return 0; }
在讨论《求助》回复:
@[fze88888888](/user/772028) ~~~~ 悟了 谢谢
在讨论《求助》回复:
@[fze88888888](/user/772028) ~~~~ 还是不对
在讨论《求助》回复:
@[Bbaka](/user/138440) ~~~~ 能具体说明吗
```cpp #include using namespace std; int main() { double F,C; cin>>F; C=5*(F-32)/9; printf("%.5f\%F",C); }
```cpp #include using namespace std; int main() { int d,b, max = -1, min = 1001; cin>>d>>b; for (int i = 0; i >d; if (w > max) max = w; if (min > w) min = w; }…
在讨论《救》回复:
@[willem248](/user/378467) 谢谢 借你思路 ```cpp#include using namespace std; int main() { long long n=0,x=0,a=0,b=0,i,t=0; cin>>n>>x; for(int i=1;i<=n;i++) { a=i; whi…
在讨论《救》回复:
@[willem248](/user/378467) 还是WA
```cpp #include using namespace std; int main() { long long n=0,x=0,a=0,b=0,i,t=0; cin>>n>>x; for(int i=1;i<=n;i++) { a=i; while(a!=0) { b=a%10; b=a/10; if(b==x…
``` cpp #include using namespace std; int main() { int s,v,xs,fz,hh,mm,time; cin>>s>>v; if(time%v!=0) time=s/v+11; else time=s/v+10; xs=time/60; fz=time%60; if(…
```cpp #include using namespace std; int main() { int s,v,xs,fz,hh,mm,time; cin>>s>>v; if(time%v!=0) time=s/v+11; else time=s/v+10; xs=time/60; fz=time%60; if(x…