странное , но все же:
#include < string> #include < vector> #include < iostream> bool compose( std: : vector< std: : wstring> & input, std: : wstring result ){ for( int i = 0; i < result.size(); ++i ) { bool found( false ); for( int j = 0; j < input.size(); ++j ) { if( input[j].find( result[i] ) ! = -1 ) { found = true; input[j].erase( input[j].begin() + input[j].find( result[i] ) ); } } if( found == false ) return false; } std: : wcout < < l""; for( int i = 0; i < input.size(); ++i ) { std: : wcout < < input[i] < < l"\n"; } std: : wcout < < l""; std: : wcout < < result < < l"\n"; std: : wcout < < l""; return true; }int main(int argc, wchar_t* argv[]){ std: : vector< std: : wstring> v1; v1.push_back( l"инструменты" ); compose( v1, l"струны" ); std: : vector< std: : wstring> v2; v2.push_back( l"инструменты" ); compose( v2, l"трус" ); std: : vector< std: : wstring> v3; v3.push_back( l"инструменты" ); compose( v3, l"турист" ); std: : vector< std: : wstring> v4; v4.push_back( l"шишка" ); v4.push_back( l"флаг" ); v4.push_back( l"трос" ); compose( v4, l"шрифт" ); std: : wstring text; std: : wcout < < l"\nтекст: "; std: : wcin > > text; int count = 0; for( int i = 0; i < text.size(); ++i ) { if( text[i] == l'm' ) ++count; } std: : wcout < < l"\nколичество m: " < < count; return 0; }
var a: array[1..10,1..10]of integer; b: array[1..10,1..10]of integer; i,j,s1,s2: integer; beginfor i: =1 to 10 do for j: =1 to 10 do begin a[i,j]: =random(9)+1; b[i,j]: =random(9)+1; end; for i: =1 to 10 do begin for j: =1 to 10 do write(a[i,j],' '); if j=10 then writeln; end; writeln; for i: =1 to 10 do begin for j: =1 to 10 do write(b[i,j],' '); if j=10 then writeln; end; for i: =1 to 10 dofor j: =1 to 10 doif i=j then begins1: =s1+a[i,j]; s2: =s2+b[i,j]; end; writeln; if s1> s2 then for i: =1 to 10 do begin for j: =1 to 10 do write(a[i,j],' '); if j=10 then writeln; end elsefor i: =1 to 10 do begin for j: =1 to 10 do write(b[i,j],' '); if j=10 then writeln; end; end.
Поделитесь своими знаниями, ответьте на вопрос:
Черно-белое (без градации серого) растровое графическое изображение имеет размеры 10×10 точек. какой объем памяти займет это изображение?
1) количество точек -100
2) так как всего 2 цвета черный и белый. то глубина цвета равна 1 ( 21 =2)
3) объем видеопамяти равен 100*1=100бит
во втором действии 2 в степени 1, а не 21.