题解 1245: 神奇的fans

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

aaaaaaaaaaaaaaaaaaa

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){        int n;        scanf("%d",&n);        while(n--) ……

神奇的fans (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<math.h>#include<stdlib.h>int a[110];int m……

神奇的fans (C++代码)

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; whi……
优质题解

神奇的fans (C语言代码)

摘要:解题思路:先将输入的m个数字从小到大排序,假设这组数据a1到am构成等差数列,公差d为a2-a1,遍历序列,如果发现任何相邻两数的差不等于d,就可以判定该序列不是等差数列。注意事项:当只有一张或两张卡……

神奇的fans (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ int i, j, l, n, m, d, max, count; scanf("%d", &n); ……

神奇的fansC++必过题解

摘要:解题思路:排序后判断注意事项:无参考代码:#include<bits/stdc++.h>using namespace std;int main() {  bool d=1; int c=0,i,j,……

神奇的fans (C++代码)

摘要:解题思路:    1.输入数据;    2.若数据只有1个或2个则一定是等差数列;    3.排序,求出d=a[1]-a[0],然后判断整个数列是否前后两项之差都为d,若都为d则是等差数列,否则不是。……

排序+遍历

摘要:先对数列进行排序,定义a[1]-a[0]为公差,遍历数列,如果有相邻两个数的差不等于公差输出no 否则输出yes ```cpp #include "iostream" using names……