#include <iostream.h>#include <math.h>void main(){float s=0;float r1=5.6;float r2=3.8;float PI=3.14;s=PI*r1;cout<<s<<endl;}
#include <iostream.h>#include <math.h>void main(){float s=0;float r1=5.6;float r2=3.8;float PI=3.14;s=PI*r2;cout<<s<<endl;}
код написаний на с++
даний код вираховує S
#include <iostream.h>
#include <math.h>
void main()
{
float s=0;
float r1=5.6;
float r2=3.8;
float PI=3.14;
s=PI*r1;
cout<<s<<endl;
}
#include <iostream.h>
#include <math.h>
void main()
{
float s=0;
float r1=5.6;
float r2=3.8;
float PI=3.14;
s=PI*r2;
cout<<s<<endl;
}
код написаний на с++
даний код вираховує S