<?function get_country () { $Ip_Address = $_SERVER[‘REMOTE_ADDR’]; $Geo_Plugin_XML = simplexml_load_file("http://www.geoplugin.net/xml.gp?ip=" . $Ip_Address); $Country = $Geo_Plugin_XML->geoplugin_countryName; return $Country;}?>
<?echo $country = get_country(); ?>
package matematiksel_islemler; import javax.swing.JOptionPane; public class Matematiksel_islemler { public static **** main(String args) { Integer r=Integer.parseInt(JOptionPane.showInputDialog ("Dairenin yarıçapını giriniz:")); double cevre; cevre=2*3.14*r; JOptionPane.showMessageDialog (null, "Dairenizin çevresi: "+cevre+" cm"); } }