/*
#include <stdio.h>
int main()
{
int a=19;
int b=4;
printf("덧셈 : %d \n", a+b);
printf("뺄셈 : %d \n", a-b);
printf("곱셈 : %d \n", a*b);
printf("나눗셈 : %d \n", a/b);
printf("나머지 : %d \n", a%b);
return 0; //연산자 연습
}*/
/*
#include<stdio.h>
int main()
{
printf("%d\n", -4 + 6 * 5 + 3);
printf("%d\n", 3 -7 % 8 + 5);
printf("%d\n", -5*3%-2/4);
printf("%d\n", (8+7)%6/2);
return 0; //우선연산자 Test
}
*/
/*
#include<stdio.h>
int main()
{
int a=6;
int b=6;
printf("%d \n", a<b);
printf("%d \n", a<=b);
printf("%d \n", a>b);
printf("%d \n", a>=b);
printf("%d \n", a==b);
printf("%d \n", a!=b);
return 0; //관계연산자
}
*/
/*
#include<stdio.h>
int main()
{
int i =1, j=2, k=-7;
printf("%d\n", 'a'+1<j);
printf("%d\n", -i -5 * j >= k+1);
printf("%d\n", i+j+k == -2 * j);
return 0; //논리연산자 (크기비교)
} */
/*
#include<stdio.h>
int main()
{
int a=0;
int b=1;
int c=-1;
printf("%d \n", a||b); //논리합(a또는 b)
printf("%d \n", b||c);
printf("%d \n", a && c); //논리곱(a 그리고 c)
printf("%d \n", b && c);
printf("%d \n", !a); //부정(a의 부정)
printf("%d \n", !b);
return 0;
}
*/
'IT기초 > C 언어' 카테고리의 다른 글
c언어 - 1부터 100 까지 수 중에서 3의 배수 출력 (0) | 2014.09.08 |
---|---|
c언어 연습 (0) | 2014.09.08 |
c언어 - printf // scnf // gets // puts (0) | 2014.09.08 |
c언어 - 사용자로부터 정수 세 개를 입력받아 정수형 변수 a,b,c에 각각 저장한 후, 조건 연산자를 이용하여 이들 변수 중 가장 큰 값을 출력하는 프로그램을 작성하세요. (0) | 2014.09.08 |
c언어 연습 (0) | 2014.09.08 |