A-B1 [백준 1001] A-B _ c language A와 B를 scanf로 입력받은 후 A-B를 출력하면 된다.#include int main() { int a,b,sub; scanf("%d %d",&a,&b); sub = a-b; printf("%d",sub); return 0; } 2018. 5. 7. 이전 1 다음