text
stringlengths
0
14.1k
sifreli_sayi = (1000*binler) + (100*yuzler) + (10*onlar) + (birler); //rakamlar basamak degerleriyle carpilip toplanir
printf(""Girdiginiz sayi %d dir Sifreli sayiniz %d dir.\n"",sayi,sifreli_sayi);
printf(""Sifrelenicek sayiyi giriniz:"");
scanf(""%d"",&sayi);
}
printf(""Programdan Sonlandirilmistir."");
return 0;
}
" gpl-2.0
carlosway89/testshop ext/payone/php/Payone/Api/Enum/AddressCheckPersonstatus.php 1574 "<?php
/**
*
* NOTICE OF LICENSE
*
* This source file is subject to the GNU General Public License (GPL 2)
* that is bundled with this package in the file LICENSE.txt
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Payone to newer
* versions in the future. If you wish to customize Payone for your
* needs please refer to http://www.payone.de for more information.
*
* @category Payone
* @package Payone_Api
* @subpackage Enum
* @copyright Copyright (c) 2012 <[email protected]> - www.noovias.com
* @author Matthias Walter <[email protected]>
* @license <http://www.gnu.org/licenses/> GNU General Public License (GPL 2)
* @link http://www.noovias.com
*/
/**
*
* @category Payone
* @package Payone_Api
* @subpackage Enum
* @copyright Copyright (c) 2012 <[email protected]> - www.noovias.com
* @license <http://www.gnu.org/licenses/> GNU General Public License (GPL 2)
* @link http://www.noovias.com
*/
class Payone_Api_Enum_AddressCheckPersonstatus
{
const NONE = 'NONE'; //NONE: no verification of personal data carried out
const PPB = 'PPB'; //PPB: first name & surname unknown
const PHB = 'PHB'; //PHB: surname known
const PAB = 'PAB'; //PAB: first name & surname unknown
const PKI = 'PKI'; //PKI: ambiguity in name and address
const PNZ = 'PNZ'; //PNZ: cannot be delivered (any longer)
const PPV = 'PPV'; //PPV: person deceased
const PPF = 'PPF'; //PPF: postal address details incorrect
}
" gpl-2.0
aryashree/eTechBuddy README.md 40 "# eTechBuddy
eTechBuddy code repository
" gpl-2.0
graysadler/gvod sites/all/themes/mothership/mothership/templates/panels/mothership-3colstacked/mothership-3colstacked.tpl.php 1988 "<?php
/**
* @file
* page layout with header & footer markup
*/
?>
<?php if( theme_get_setting('mothership_poorthemers_helper') ){ ?>
<!-- tpl: layout-contact.tpl.php -->
<?php } ?>
<?php
/* Use Drupals basic markup for the backend */
if (arg(0) ==""admin""){
?>
<div class=""panel-display"" <?php if (!empty($css_id)) { print ""id=\""$css_id\""""; } ?>>
<div class=""panel-panel panel-col-100"">
<div class=""inside""><?php print $content['top']; ?></div>
</div>
<div class=""panel-panel panel-col-100"">
<div class=""panel-panel panel-col-33"">
<div class=""inside""><?php print $content['left']; ?></div>
</div>
<div class=""panel-panel panel-col-33"">
<div class=""inside""><?php print $content['middle']; ?></div>
</div>
<div class=""panel-panel panel-col-33"">
<div class=""inside""><?php print $content['right']; ?></div>
</div>
</div>
<div class=""panel-panel panel-col-100"">
<div class=""inside""><?php print $content['bottom']; ?></div>
</div>