⑴ 統計表統計的數據可以用什麼來統計......
忘記了!統計學計算題可以幫你做!
⑵ ( )用表格呈現數據 條型統計圖( )呈現數據
折形
⑶ 統計表用什麼呈現數據
#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
⑺ 統計表用什麼呈現數據,條形統計圖用什麼呈現數據。
數字啊