Study/code up
[codeup] 1054 : [기초-논리연산] 둘 다 참일 경우만 참 출력하기
1nfra
2019. 7. 23. 04:06
728x90
1 2 3 4 5 6 7 8 9 | #include<stdio.h> int main() { int a,b ; scanf("%d%d", &a,&b); printf("%d", a&&b); return 0; } | cs |
728x90