If you draw a straight line on a plane, the plane is divided into two regions. For example, if you pull two straight lines in parallel,
- برمجة بي اتش بي
- 2021-09-08
- mhanasmh00489829403
الأجوبة
<?php
while (($line = trim(fgets(STDIN))) !== '') {
$n = (int)$line;
$result = 2;
for ($i = 2; $i <= $n; $i++) {
$result += $i;
}
echo 'Maximum number of regions: ';
echo $result, PHP_EOL;
}
?>
Sample Input:
5
Sample Output:
Maximum number of regions: 16
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال