Chart.js использует Javascript и HTML5 Canvas для построения гистограмм и различных типов диаграмм: круговых, полярных, кольцевых и др. Одно из преимуществ Chaart.js − дизайнерское оформление и возможность использования анимационных эффектов.
Program chik; var a:array[1..1000]of integer; h,i,n,x:integer; begin read(n); h:=0; for i:=1 to n do begin read(a[i]); end; read(x); for i:=1 to n do begin if(a[i]=x*x)then h:=h+1; end; write(h); end. 2) program chik2; var a,h:integer; begin a:=5; h:=0; while a<>0 do begin read(a); if(a<0)then h:=h+1; end; write(h); end. 3)program chik3; var a,h,s,p:real; begin a:=5; h:=0; while a<>0 do begin read(a); s:=s+a; h:=h+1; end; p:=s/h; write(p); end. 4)program chik4; var n,j,i:longint; begin read(n); for i:=1 to n do begin for j:=1 to i do begin write(j,' '); end; writeln; end; end. УДАЧИ!
Я здесь и для *(умножения тоже сделал) program gt; label 1; var a:string; i,l,s,s2,s3,j:longint; begin read(a);l:=length(a);s:=0;s2:=0; for i:=1 to l do begin if (a[i]='+')or(a[i]='-')or(a[i]='*')then goto 1; end; 1: for j:=1 to i-1 do begin if a[j]='1' then s:=s*10+1; if a[j]='2' then s:=s*10+2; if a[j]='3' then s:=s*10+3; if a[j]='4' then s:=s*10+4; if a[j]='5' then s:=s*10+5; if a[j]='6' then s:=s*10+6; if a[j]='7' then s:=s*10+7; if a[j]='8' then s:=s*10+8; if a[j]='9' then s:=s*10+9; if a[j]='0' then s:=s*10+0; end; for j:=i+1 to l do begin if a[j]='1' then s2:=s2*10+1; if a[j]='2' then s2:=s2*10+2; if a[j]='3' then s2:=s2*10+3; if a[j]='4' then s2:=s2*10+4; if a[j]='5' then s2:=s2*10+5; if a[j]='6' then s2:=s2*10+6; if a[j]='7' then s2:=s2*10+7; if a[j]='8' then s2:=s2*10+8; if a[j]='9' then s2:=s2*10+9; if a[j]='0' then s2:=s2*10+0; end; if a[i]='+' then s3:=s+s2; if a[i]='-' then s3:=s-s2; if a[i]='*' then s3:=s*s2; writeln(s3); end. 2)более проще program gt; label 1; var a:string; i,l,s,s2,s3,j:longint; begin read(a);l:=length(a);s:=0;s2:=0; for i:=1 to l do begin if (a[i]='+')or(a[i]='-')or(a[i]='*')then goto 1; end; 1: for j:=1 to i-1 do begin s:=s*10+ord(a[j])-48; end; for j:=i+1 to l do begin s2:=s2*10+ord(a[j])-48; end; if a[i]='+' then s3:=s+s2; if a[i]='-' then s3:=s-s2; if a[i]='*' then s3:=s*s2; writeln(s3); end.
Chart.js
Chart.js использует Javascript и HTML5 Canvas для построения гистограмм и различных типов диаграмм: круговых, полярных, кольцевых и др. Одно из преимуществ Chaart.js − дизайнерское оформление и возможность использования анимационных эффектов.