题解列表

筛选

计算多项式的值

摘要:##计算多项式的值 如下 ``` #include using namespace std; int main(){ double x,n,x2=1; cin>>x>>n; do……

一看就懂的,好吧

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>#include<math.h>using namespace std;int main(){ in……

2797: 最高的分数

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

2800: 多边形内角和

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

三个字符串的排序

摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <math.h> #include <string.h> int main() {     // 声……

编写题解 1196: 去掉空格

摘要:解题思路:注意事项:参考代码:#include<stdio.h>void f(char a[100]){ int i=0,k=0;  while(a[i]!=&#39;\0&#39;)  { if(a……