⑴ 统计表统计的数据可以用什么来统计......
忘记了!统计学计算题可以帮你做!
⑵ ( )用表格呈现数据 条型统计图( )呈现数据
折形
⑶ 统计表用什么呈现数据
#include<iostream>
#include<time.h>
#include<iomanip>
using namespace std;
const int N=10;
int main()
{
int a[N],i,j,temp,b;
srand(time(NULL));
for(i=0;i<N;i++)
a[i]=rand()%100;
for(i=0;i<N;i++)
cout<<setw(3)<<a[i];
cout<<endl;
for(i=0;i<N-1;i++)
{
temp=i;
for(j=i+1;j<N;j++)
{
if(a[temp]>a[j])
temp=j;
}
if(i!=temp)
{
b=a[temp];
a[temp]=a[i];
a[i]=b;}
}
for(i=0;i<N;i++)
cout<<setw(3)<<a[i];
cout<<endl;
}
⑷ 统计表用什么呈现数据条形统计图用什么呈现数据它们都能清楚地看出什么
咨询记录 · 回答于2021-10-12
⑸ 统计表条形统计图用什么呈现数据
只有登上山顶,才能看到那边的风光。
⑹ excel表格中数据的统计,有多少种数据出现,都是什么数据
在VBA编辑器下,编一个自定义函数,如下:
Option Explicit
Function wpzl(quyu As Range) As String
Dim wp As Range
Dim i As Long, j As Long, total As Long, ct As Long
Dim flg As Long
Dim wpname() As String
i = 0
ReDim wpname(quyu.count)
For Each wp In quyu
wpname(i) = wp.Value
i = i + 1
Next wp
ct = 1
wpzl = wpname(0)
For i = 1 To quyu.count - 1
flg = 1
For j = 0 To i - 1
If wpname(i) = wpname(j) Then flg = False
Next j
If flg = 1 Then
ct = ct + 1
wpzl = wpzl & "," & wpname(i)
End If
Next i
wpzl = wpzl & ",总数" & ct
End Function
然后在任意空单元格中填入公式:=wpzl(A2:C7)
OK
⑺ 统计表用什么呈现数据,条形统计图用什么呈现数据。
数字啊