Home TIL 220213
Post
Cancel

TIL 220213

C

형변환

long long 형의 데이터인 a와 b를 나누어 소숫점까지 출력하기 위해서 float형으로 형변환을 함.

1
2
3
4
5
6
7
8
#include <stdio.h>

int main(void)
{
    long long a,b;
    scanf("%lld%lld",&a, &b);
    printf("%.2f",(float)a/(float)b);
}

예제

논리연산자

참 거짓이 다를 때만 참 출력하기

printf("%d", (a && !b)||(!a && b));

This post is licensed under CC BY 4.0 by the author.

TIL 220212

TIL 220214