llIllIIIIIIIIIIIllll
2024-07-19 20:04:53
发布于:广东
<h1 style="display: inline-block;color:rgb(114,51,4);">好</h1>
<h2 style="display: inline-block;color:rgb(191,98,10);">的</h2>
<h3 style="display: inline-block;color:rgb(114,51,4);">很</h3>
<h4 style="display: inline-block;color:rgb(191,98,10);">啊</h4>
<h5 style="display: inline-block;color:rgb(114,51,4);">~</h5>
<h6 style="display: inline-block;color:rgb(191,98,10);">~</h6>
全部评论 6
<h1 style="display: inline-block;color:rgb(114,51,4);">好</h1>
<h2 style="display: inline-block;color:rgb(191,98,10);">的</h2>
<h3 style="display: inline-block;color:rgb(114,51,4);">很</h3>
<h4 style="display: inline-block;color:rgb(191,98,10);">啊</h4>
<h5 style="display: inline-block;color:rgb(114,51,4);">~</h5>
<h6 style="display: inline-block;color:rgb(191,98,10);">~</h6>2024-07-22 来自 广东
0#include<bits/stdc++.h> using namespace std; struct cao{ string n; long long y; }; int main(){ int n,m; int sum=0; cin>>n>>m; int a[m][n]; for(int i=0;i<n;i++){ for(int j=0;j<m;j++){ cin>>a[j][i]; if(a[j][i]%3==0){ sum+=a[j][i]; } } } cout<<sum; return 0; }
2024-07-20 来自 广东
0#include<bits/stdc++.h> using namespace std; int main(){ string n; cin>>n; for(int i=0;i<n.size();i++){ if(i==n.size()-1){ cout<<n[i]; }else{ cout<<n[i]<<"-"; } } return 0; }
2024-07-20 来自 广东
0#include<bits/stdc++.h> using namespace std; int main(){ double a,b,c; cin>>a>>b>>c; double h=max(a,max(b,c)); double y=max(a+b,max(b,c)); double j=max(a,max(b,b+c)); printf("%.3lf",h/(y*j)); return 0; }
2024-07-20 来自 广东
0```#include<bits/stdc++.h> using namespace std; struct cao{ string n; long long y; }; int main(){ int n; cin>>n; int a[n]; int x,y,h; for(int i=0;i<n;i++){ cin>>a[i]; } cin>>x>>y>>h; for(int i=0;i<n;i++){ if(i+1>=x&&i+1<=y){ cout<<a[i]+h<<" "; }else{ cout<<a[i]<<" "; } } return 0; }
2024-07-20 来自 广东
0#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
cin>>n;
int sum=0;
int s[n];
for(int i=1;i<=n;i++){
int y=1;
for(int j=1;j<=i;j++){
y*=j;
}
sum+=y;
}cout<<sum; return 0;
}
2024-07-19 来自 广东
0#include<iostream> using namespace std; int main(){ double a,b,c; cin>>a>>b>>c; cout<<"sum = "<<(int)b+a+c<<", average = "; printf("%.2lf",(a+b+c)/3); return 0; }
2024-07-19 来自 广东
0#include<bits/stdc++.h> using namespace std; int hanshu(int a){ if(a<=0){ cout<<-a; return 1; } else { cout<<a*a; return 2; } } int main(){ int x; cin>>x; hanshu(x); return 0; }
2024-07-19 来自 广东
0
有帮助,赞一个