题解列表

筛选

题解 2768: 与圆相关的计算

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){   double r;   scanf("%lf",&r);   pr……

字符串处理回文数

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string.h>using namespace std;int main(){ int n; int sum=0,……

为什么我写的这么简单1

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<algorithm>using namespace std;int a[1111],b[1111],c[1111],d……

2836: 数组逆序重放

摘要:``` #include using namespace std; int main(){ int n; cin>>n; int a[n]; for( int i=1;i>a[i……

题解 2833: 金币

摘要: #include using namespace std; int main() { int sum=0,d=0,a; cin>>a; ……

2835: 计算书费

摘要:``` #include using namespace std; int main(){ double a[10] = {28.9,32.7,45.6,78,35,86.2,27.8,43……

2780: 奇偶数判断

摘要:# 思路 用三目运算符判断输入值的奇偶性 # code ```c++ #include using namespace std; int main() { int t; ……

1762: printf基础练习

摘要:注意事项:带前缀要加#参考代码:#include<iostream> using namespace std; int main() {        int t=123456789;   ……