K=256x128=2^8*2^7=2^15 пикс.;
I=16=2^4 КБ = 2^4*2^10*2^3 = 2^17 бит
i=k/I=2^17/2^15=2^2 бит = 4 бита на пиксель.
N=2^i=2^4= 16
Ответ: 16 цветов в палитре.
1) int main(){
cin >> n;
i:=0;
while(i < n){
i++;
cout >> i*i<<"\n";
}
return 0;
}
2)
cin >> n;
s = 0;
while(n > 0){
if(n % 10 == 1) s++;
n/=10;
}
cout << s;
return 0;
}
Пишу в питоне :
a= int(input())
b=int(input())
c=int(input())
if a > b and a > c :
print(a)
elif b > a and b > c:
print(b)
elif c > a and c > b :
print(c)
Все числа вводятся через enter!