/*
#include <stdio.h>
int main(void)
{
int n=1;
int result=0;
while(n<100)
{
if(n%3 == 0)
{
result += n;
}
n++;
}
printf("1부터 100사이의 모든 3의 배수의 합은 %d입니다.\n", result);
return 0;
}*/
#include <stdio.h>
int main(void)
{
int n;
int result=0;
for(n=1;n<100;n++)
{
if(n%3 == 0)
{
result += n;
}
}
printf("1부터 100사이의 모든 3의 배수의 합은 %d입니다.\n", result);
return 0;
}
/*
#include <stdio.h>
int main(void)
{
int n=1;
int result=0;
do
{
if(n%3 == 0)
{
result += n;
}
n++;
} while(n<100);
printf("1부터 100사이의 모든 3의 배수의 합은 %d입니다.\n", result);
return 0;
}*/
'2학기 > C언어' 카테고리의 다른 글
7장 3번 (0) | 2013.11.09 |
---|---|
7장 2번 (0) | 2013.11.09 |
같은자리 공란만들기 (0) | 2013.11.07 |
while 반복문 7 - 평균값구하기 센티널값 빼기 (0) | 2013.11.07 |
while 반복문 6 (0) | 2013.11.06 |
움직이는 편지만들기움직이는 편지만들기
Posted at 2013. 11. 9. 12:35 | Posted in 2학기/플래시'2학기 > 플래시' 카테고리의 다른 글
캐릭터 뛰기 걷기 (0) | 2013.11.27 |
---|---|
플래시 요소의 종류와 특징 (0) | 2013.10.09 |
플래시 요소의 종류와 특징 (0) | 2013.10.09 |
플래시 (0) | 2013.10.09 |
Tools 패널 (0) | 2013.09.08 |
Internet of Things. IoTInternet of Things. IoT
Posted at 2013. 11. 8. 17:48 | Posted in IT News사물인터넷(IoT, Internet of Things)
사물들이 인터넷으로 연결돼 서로 통신을 하면서 정보를 교환하는 것을 의미한다. 사물에 부착된 센서,칩을 활용해 정보를 수집하고 통신한다. 헬스케어, 자동차, 교육, 농업, 도시개발 등 다양하 분야에 적용돼 정보혁명을 주도하고 있다.
지난 9월 미국 샌프란시스코에서 열린 제34회 아메리카컵 요트 대회에서는 IT기업오라클의 후원을 받아 출전한 '오라클 팀 USA'가 우승을 차지했다. 이팀은 1대8로 지고 있던 경기를 막판에 내리 8연승하면서 역전에 성공했다. 오라클 팀 USA는 우승비결로 '사물인터넷'을 잘 활용한 것이 주효했다고 밝혔다. 오라클 팀 USA는 요트에 400개의 센서를 달아 풍속, 풍향, 돛대의 상태, 배의 움직임 등의 데이터를 태블릿pc로 확인했다. 선수들이 팔목에 착용한 시계로도 정보를 받아 경기 운영에 활용했다.
사물들이 서로 통신을 통해 교감하는 사물인터넷 시대가 열리고 있다. 인터넷이 사람들을 연결하고 스마트폰이 모바일혁명을ㅈ ㅜ도했다면 이제 사물이 새로운 정보혁명의 주인공으로 부상한 것이다. 사물은 단순히 사람들이 사용하는 도구에 그치는 것이 아니라 센서와 칩을 통해 서로 연결돼, 사람의 개입 없이도 실시간으로 정보를 주고받는 창구 역할을 한다. IT업계는 사물인터넷이 도시와 집, 자동차, 건물 등을 하나로 묶는 '초연결 시대'를 가져올 것으로 전망하고 있다.
'IT News' 카테고리의 다른 글
MS 비주얼스튜디오, 클라우드로 진화 (0) | 2013.11.25 |
---|---|
5천억원짜리 SW버그가 주는 메시지 (0) | 2013.11.25 |
조립형 스마트폰 '폰블럭' (0) | 2013.10.28 |
갤노트3 출시 (0) | 2013.09.08 |
꿈의 직장 제니퍼소프트 (1) | 2013.09.06 |
같은자리 공란만들기같은자리 공란만들기
Posted at 2013. 11. 7. 14:46 | Posted in 2학기/C언어#include <stdio.h>
int main()
{
int i, j, m;
for(i=5;i>=1;i--) //y축
{
for(j=1;j<6;j++) //x축
{
if(i!=j)
printf("*");
else
printf(" ");
}
printf("\n");
}
}
'2학기 > C언어' 카테고리의 다른 글
7장 2번 (0) | 2013.11.09 |
---|---|
7장 1번 (0) | 2013.11.09 |
while 반복문 7 - 평균값구하기 센티널값 빼기 (0) | 2013.11.07 |
while 반복문 6 (0) | 2013.11.06 |
while 반복문 5 (0) | 2013.11.06 |
while 반복문 7 - 평균값구하기 센티널값 빼기while 반복문 7 - 평균값구하기 센티널값 빼기
Posted at 2013. 11. 7. 00:05 | Posted in 2학기/C언어#include <stdio.h>
int main()
{
int n, grade;
double average, sum;
sum = 0;
n = 0;
grade = 0;
printf("종료하려면 음수를 입력하세요.\n");
while(grade >= 0)
{
printf("성적을 입력하세요 : ");
scanf("%d", &grade);
sum = sum + grade;
n++;
}
sum = sum - grade;
n--;
average = sum / n;
printf("평균은 %lf점입니다.", average);
}
'2학기 > C언어' 카테고리의 다른 글
7장 1번 (0) | 2013.11.09 |
---|---|
같은자리 공란만들기 (0) | 2013.11.07 |
while 반복문 6 (0) | 2013.11.06 |
while 반복문 5 (0) | 2013.11.06 |
while 반복문 4 (0) | 2013.11.06 |
while 반복문 6while 반복문 6
Posted at 2013. 11. 6. 21:46 | Posted in 2학기/C언어#include <stdio.h>
int main()
{
int i, n, sum;
i = 0;
sum = 0;
while (i < 5)
{
printf("값을 입력하시오: ");
scanf("%d", &n);
sum = sum + n;
i++;
}
printf("1부터 %d까지의 합은 %d입니다.", n, sum);
}
'2학기 > C언어' 카테고리의 다른 글
같은자리 공란만들기 (0) | 2013.11.07 |
---|---|
while 반복문 7 - 평균값구하기 센티널값 빼기 (0) | 2013.11.07 |
while 반복문 5 (0) | 2013.11.06 |
while 반복문 4 (0) | 2013.11.06 |
while 반복문 3 (0) | 2013.11.06 |
while 반복문 5while 반복문 5
Posted at 2013. 11. 6. 18:12 | Posted in 2학기/C언어#include <stdio.h>
int main()
{
int i, n, sum;
printf("정수를 입력하세요 : ");
scanf("%d", &n);
i = 0;
sum = 0;
while (i <= n)
{
sum += i;
i = i + 2;
}
printf("1부터 %d까지의 합은 %d입니다.", n, sum);
}
'2학기 > C언어' 카테고리의 다른 글
while 반복문 7 - 평균값구하기 센티널값 빼기 (0) | 2013.11.07 |
---|---|
while 반복문 6 (0) | 2013.11.06 |
while 반복문 4 (0) | 2013.11.06 |
while 반복문 3 (0) | 2013.11.06 |
while 반복문 2 (0) | 2013.11.06 |
while 반복문 4while 반복문 4
Posted at 2013. 11. 6. 18:11 | Posted in 2학기/C언어#include <stdio.h>
int main()
{
int i, n, sum;
printf("정수를 입력하세요 : ");
scanf("%d", &n);
i = 1;
sum = 0;
while (i <= n)
{
sum += i;
i++;
}
printf("1부터 %d까지의 합은 %d입니다.", n, sum);
}
'2학기 > C언어' 카테고리의 다른 글
while 반복문 6 (0) | 2013.11.06 |
---|---|
while 반복문 5 (0) | 2013.11.06 |
while 반복문 3 (0) | 2013.11.06 |
while 반복문 2 (0) | 2013.11.06 |
while 반복문 (0) | 2013.11.06 |
while 반복문 3while 반복문 3
Posted at 2013. 11. 6. 17:57 | Posted in 2학기/C언어#include <stdio.h>
int main()
{
int n;
printf("======================\n");
printf(" n n의제곱 \n");
printf("======================\n");
n = 1;
while(n<=10)
{
printf(" %5d %5d\n", n, n*n);
n++;
}
}
'2학기 > C언어' 카테고리의 다른 글
while 반복문 5 (0) | 2013.11.06 |
---|---|
while 반복문 4 (0) | 2013.11.06 |
while 반복문 2 (0) | 2013.11.06 |
while 반복문 (0) | 2013.11.06 |
4차 10번 (0) | 2013.10.31 |
while 반복문 2while 반복문 2
Posted at 2013. 11. 6. 17:48 | Posted in 2학기/C언어#include <stdio.h>
int main()
{
int n;
int i=1;
printf("출력하고 싶은 단 : ");
scanf("%d", &n);
while (i <= 9)
{
printf("%d*%d = %d \n", n, i, n*i);
i++;
}
}
'2학기 > C언어' 카테고리의 다른 글
while 반복문 4 (0) | 2013.11.06 |
---|---|
while 반복문 3 (0) | 2013.11.06 |
while 반복문 (0) | 2013.11.06 |
4차 10번 (0) | 2013.10.31 |
4차 9번 (0) | 2013.10.31 |