안녕하세요 😊 오늘은 코드업 기초 100제1001번부터 1010번 까지의 해설코드를 올려보려 합니다!

처음 약 20 ~ 30문제 정도는 대부분 기본적인 출력문제라 너무너무 쉽고 간단하지만, 뒤로 갈수록 난이도가 올라가기 때문에 앞으로 올라올 해설코드들이 도움이 될 수 있을 것 같아요.

모든 코드는 C로 작성되었습니다


# 1001

  #include <stdio.h>
  int main()
  {
  	printf("Hello");
  	return 0;
  }


# 1002

#include <stdio.h>

int main()
{
	printf("Hello World");
	return 0;
}


# 1003

#include <stdio.h>

int main()
{
	printf("Hello\nWorld");
	return 0;
}


# 1004

#include <stdio.h>

int main()
{
	printf("\'Hello\'");
	return 0;
}


# 1005

#include <stdio.h>

int main()
{
	printf("\"Hello World\"");
	return 0;
}


# 1006

#include <stdio.h>

int main()
{
	printf("\"!@#$%^&*()\"");
	return 0;
}


# 1007

#include<stdio.h>

int main()
{
	printf("\"C:\\Download\\hello.cpp\"");
	return 0;
}


# 1008

주의 1! 운영체제에 따라 출력값이 다를 수 있습니다
주의 2! “유니코드” 를 사용해서 출력해야합니다

#include <stdio.h>

int main (){
    printf("\u250C\u252C\u2510\n\u251C\u253C\u2524\n\u2514\u2534\u2518");
}


# 1010

#include <stdio.h>

int main(){
    int n;
    scanf("%d", &n);
    printf("%d", n);
}

읽어주셔서 감사합니다! 🙂