22 条题解
-
1
#include<bits/stdc++.h> using namespace std; int main(){ int n,a=1,i=0,r=1,h; cin>>n; h=n; for(int c=1;c<=n;c++){ for(int d=1;d<=n;d++){ if(a<10) cout<<0; cout<<a; a++; } cout<<endl; } cout<<endl; for(int m=1;m<=n;m++){ for(int q=2;q<=h;q++){ cout<<" "; } h--; i++; for(int f=1;f<=i;f++){
if(r<10) cout<<0; cout<<r; r++; } cout<<endl; } return 0;
}
-
1
-
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,e,f,x; cin>>a>>b>>c>>d; x=60*c+d-60*a-b; e=x/60; f=x-60*e; cout<<e<<" "<<f; return 0; }
Copy *
-
信息
- ID
- 612
- 时间
- 1000ms
- 内存
- 125MiB
- 难度
- 4
- 标签
- 递交数
- 593
- 已通过
- 265
- 上传者