Всего в классе получилось 30 человек. значит 1/30?
Program konf;
var a, b, summ: real;
begin
a := 1.2;
readln(b);
while a < 2 do
begin
summ := a * b;
writeln(summ, ' za ', a);
a := a + 0.2
end;
<span>end.</span>
1)
#include<iostream>using namespace std;int main(){ int x,y; cin>>x>>y; if(x<0 && y>0) cout<<"YES"; else cout<<"NO"; return 0;}
2)
#include<iostream>using namespace std;int main(){ int n,m,s; cin>>n>>m; s=(n/100*100)+(m%10*10)+n%10; cout<<s; return 0;}