Вот на С++
Объяснение:
2.
#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
cin >> n;
if( n > 100)
cout << "Ого-го!" ;
else
cout << "М-м-м-м" ;
}
1.
#include <bits/stdc++.h>
using namespace std;
int main() {
int r;
cin >> r;
double S;
S = 3.14 * (r*r);
cout << S;
}
3.
#include <bits/stdc++.h>
using namespace std;
int main() {
int s=1;
for( int i = 7; i <=20; i++)
{
if(i % 2 == 0)
{
s*=i;
}
}
cout<<s;
}