Program napisany w języku C++:
#include <iostream>
#include <math.h>
float r;
using namespace std;
int main(){
cout << "Podaj promien kola: ";
cin >> r;
cout << "Pole kola wynosi ok. " << round(3.14*r*r*1000)/1000 << endl;
cout << "Obwod kola wynosi ok. " << round(3.14*r*2*1000)/1000 << endl;
return 0;
}