А=512
с=1023
с=а*2-1=512*2-1=1023
Кодяра ниже
\\\\\\\\\\\\\\\\\\\\\\
using System;
public class Test{
public static void Main(){
const int max = 100;
int[] a = new int[max];
for(int i = 0; i < max; ++i){
Console.Write("a[{0}] = ", i);
a[i] = Convert.ToInt32(Console.ReadLine(), 10);
}
Console.Clear();
Console.WriteLine("Исходный массив:");
for(int i = 0; i < max; ++i)
Console.Write("{0} ", a[i]);
Console.WriteLine();Console.WriteLine();
bool k = false;
for(int i = 2; i < max; ++i)
if((a[i] - a[i-1]) != (a[i-1] - a[i-2])){
k = true;
break;
}
if(k) Console.WriteLine("Это НЕ арифметическая прогрессия");
else Console.WriteLine("Это арифметическая прогрессия c разностью {0}", a[1]-a[0]);
}
}
\\\\\\\\\\\\\\\\\\\\\\
Кодяра выше
var
a, n : integer;
begin
repeat
read(a);
if a div 7 = 0 then n += 1;
until a = 0;
writeln(n);
end.