ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 2번
    인프런 알고리즘테스트 문제 2020. 8. 16. 20:34
    #include<stdio.h>
    
    int main() {
    	int A=0;
    	int B=0;
    	int result=0;
    	scanf("%d %d",&A,&B);
    	for(int i=A;i<=B;i++)
    	{
    		result = i+result;
    		
    		printf("%d",i);
    		if(i<B)
    		{
    			printf("+");
    		}
    	}
    	printf("=%d",result);
    	
    }

    '인프런 알고리즘테스트 문제' 카테고리의 다른 글

    6번  (0) 2020.08.25
    5번  (0) 2020.08.16
    4번  (0) 2020.08.16
    3번  (0) 2020.08.16
    1번  (0) 2020.08.16
Designed by Tistory.