비고츠키비고츠키

Posted at 2011. 2. 9. 04:50 | Posted in 교양/심리학의이해


이름에서 알 수 있듯이 비고츠키는 구소련의 심리학자이다. 아동의 인지발달 이론에서 핵심적인 인물은 피아제와 비고츠키가 있다. 현대의 교육 심리학에서는 피아제의 이론보다는 비고츠피의 입장을 지지하는 것으로 보인다.

'교양 > 심리학의이해' 카테고리의 다른 글

심리학의이해  (0) 2011.01.18
신경계  (1) 2011.01.05
검은색만 칠하는 아이  (0) 2011.01.04
MMPI(Minnesota Multiphasic Personality Inventory)  (0) 2011.01.04
주제통각검사(Thematic Apperception Test: TAT)  (0) 2011.01.02
//

083. 정수를 문자열로 변환하기 1(itoa)083. 정수를 문자열로 변환하기 1(itoa)

Posted at 2011. 2. 9. 04:33 | Posted in Computer/초보자를 위한 C 언어 300제
#include <stdio.h>
#include <stdlib.h>

void main( void )
{
	int value;
	char string[100];
	int radix;

	radix = 10;

	value = 5;
	itoa( value, string, radix );
	printf( "변환된 문자열은 %s입니다.\n", string );

	value = -12345;
	itoa( value, string, radix );
	printf( "변환된 문자열은 %s입니다.\n", string );
}
//

082. 문자열을 실수로 변환하기 2(strtod)082. 문자열을 실수로 변환하기 2(strtod)

Posted at 2011. 2. 9. 04:31 | Posted in Computer/초보자를 위한 C 언어 300제
#include <stdio.h>
#include <stdlib.h>

void main( void )
{
	char *string = " 1.234E-10";
	char *stop;
	double value;

	value = strtod( string, &stop );

	printf( "%d 개의 문자가 변환되었습니다.\n", stop - string );
	printf( "문자열 [%s]를 숫자로 변환하면 %E입니다.\n", string, value );
}
//