IT(3)
-
AI
AGI (Artificial General Intelligence) DO HUMANS CAN DO likes human. VS ANI (Artificial Narrow Intelligence) ex) smart speakers . self-driving. AI factoring and farming it can do 'one' thing well it was made by ' Machine Learning ' machine learning a way complish AI 1. unsupervised Learning 비지도식 학습 humans not labels data. interpret data only based on input data. depend processing power with data...
2020.12.22 -
What is platform?
"platform" is originally a platform by passengers on and off a train or subway, and today it is a common and repetitive base module used to provide various kinds of systems or services. a kind of 'basic' that enables a service. All types of products services, assets, technology, know-how, etc are possible. playground for consume(sale) -> All of thing we can! platformatization 플랫폼 기반의 경영 ex.1) 전통..
2020.12.18 -
백준알고리즘 2588번
변수 a b로 가 주어졌을 때 scanf로 세자리 정수 두개를 입력받아 (3),(4),(5) 값을 for (반복문)을 이용하여 val 에 저장합니다 이때 반복문을 한번 처리할 때 마다 val값은 초기화 되며 sum 값은 이러한 val 값이 총 3회 (3자리 숫자 이므로) 반복한 값을 모두 더한 것입니다. 1의자리(3) 10의자리(4) 100의자리(5) 의 연산을 모두 마쳤다면 이 값을 모두 더한 sum (6) 의 값이 나옵니다. 코드는 아래와 같습니다. #include int main(){ int a, b; int i, j; int val=0, sum=0; scanf("%d%d", &a, &b); for(j=b, i=1; j!=0; j=j/10, i=i*10){ val = a*(j%10); printf(..
2020.07.15