๐Ÿ–ค Algorithm/CodeUp : C์–ธ์–ด ๊ธฐ์ดˆ 100์ œ

[์ฝ”๋“œ์—… CodeUp] C์–ธ์–ด ๊ธฐ์ดˆ 100์ œ 1001๋ฒˆ ~ 1008๋ฒˆ ํ’€์ด

์˜ˆ์ง„-D 2021. 3. 19. 20:35

codeup.kr/problemsetsol.php

 

๋ฌธ์ œ์ง‘

 

codeup.kr

์•Œ๊ณ ๋ฆฌ์ฆ˜ ๊ณต๋ถ€๋ฅผ ์‹œ์ž‘ํ•˜๊ธฐ ์•ž์„œ ์ฝ”๋“œ์—…(CodeUp)์˜ ๊ธฐ์ดˆ 100์ œ๋ฅผ ํ’€์ดํ•˜๊ธฐ๋กœ ํ•ฉ๋‹ˆ๋‹ค.

์ €๋Š” C์–ธ์–ด์™€ Python ์ค‘ ์กฐ๊ธˆ ๋” ์นœ์ˆ™ํ•œ C์–ธ์–ด๋ฅผ ์„ ํƒํ–ˆ์Šต๋‹ˆ๋‹ค.

1001๋ฒˆ๋ถ€ํ„ฐ 1008๋ฒˆ๊นŒ์ง€๋Š” ๊ธฐ์ดˆ ์ถœ๋ ฅ ์˜ˆ์ œ์ž…๋‹ˆ๋‹ค. ๐Ÿ˜Š

 

 

์•„๋ž˜ ์ฝ”๋“œ๋“ค์€ ์ œ ๊นƒํ—ˆ๋ธŒ์—์„œ๋„ ํ™•์ธํ•˜์‹ค ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. :-)

https://github.com/YejinHwang-D/Algorithm_CodeUp 

 

GitHub - YejinHwang-D/Algorithm_CodeUp: Code-up basic 100 answer using C

Code-up basic 100 answer using C. Contribute to YejinHwang-D/Algorithm_CodeUp development by creating an account on GitHub.

github.com

 


 

 

 

 

๐Ÿ’ก ์•„์ฃผ ์†Œ์†Œํ•œ Tip

๋ฐ˜๋ณต๋˜๋Š” ์ฝ”๋“œ ํ‘œํ˜„์€ ์ฝ”๋”ฉ ์Šคํƒ€์ผ ์„ค์ •์„ ์ด์šฉํ•˜๋ฉด ์ž๋™์œผ๋กœ ์ž…๋ ฅํ•ด์ค๋‹ˆ๋‹ค. 

 

main ํ•จ์ˆ˜์™€ ์ดˆ๋ฐ˜ ์ž…์ถœ๋ ฅ ์˜ˆ์ œ์—์„œ ํ•„์ˆ˜์ ์œผ๋กœ ์‚ฌ์šฉ๋  printf(""); ๊นŒ์ง€๋„ ์ ์–ด๋‘์‹œ๋ฉด ํŽธํ•ฉ๋‹ˆ๋‹ค. 

 

 

 


 

 

# 1001๋ฒˆ

์ถœ๋ ฅ ์˜ˆ์‹œ: Hello

์ฃผ์˜ ์‚ฌํ•ญ:

#include <stdio.h>

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

 

 

# 1002๋ฒˆ

์ถœ๋ ฅ ์˜ˆ์‹œ: Hello World

์ฃผ์˜ ์‚ฌํ•ญ: ๋Œ€์†Œ๋ฌธ์ž

#include <stdio.h>

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

 

 

# 1003๋ฒˆ

์ถœ๋ ฅ ์˜ˆ์‹œ: Hello

                      World

์ฃผ์˜ ์‚ฌํ•ญ: ์ค„๋ฐ”๊ฟˆ

#include <stdio.h>

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

 

 

# 1004๋ฒˆ

์ถœ๋ ฅ ์˜ˆ์‹œ: 'Hello'

์ฃผ์˜ ์‚ฌํ•ญ: ํŠน์ˆ˜ ๋ฌธ์ž '

#include <stdio.h>

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

 

 

# 1005๋ฒˆ

์ถœ๋ ฅ ์˜ˆ์‹œ: "Hello World"

์ฃผ์˜ ์‚ฌํ•ญ: ํŠน์ˆ˜ ๋ฌธ์ž "

#include <stdio.h>

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

 

 

# 1006๋ฒˆ

์ถœ๋ ฅ ์˜ˆ์‹œ: "!@#$%^&*()"

์ฃผ์˜ ์‚ฌํ•ญ: ํŠน์ˆ˜ ๋ฌธ์ž %

#include <stdio.h>

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

 

 

# 1007๋ฒˆ

์ถœ๋ ฅ ์˜ˆ์‹œ: "C:\Download\hello.cpp"

์ฃผ์˜ ์‚ฌํ•ญ: ํŠน์ˆ˜ ๋ฌธ์ž \(backslash)

#include <stdio.h>

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

 

 

# 1008๋ฒˆ

์ถœ๋ ฅ ์˜ˆ์‹œ: โ”Œโ”ฌโ”
                      โ”œโ”ผโ”ค
                      โ””โ”ดโ”˜

์ฃผ์˜ ์‚ฌํ•ญ: ์œ ๋‹ˆ์ฝ”๋“œ \u

#include <stdio.h>

int main() {
    printf("\u250C\u252C\u2510\n");
    printf("\u251C\u253C\u2524\n");
    printf("\u2514\u2534\u2518");
    return 0;
}
#include <stdio.h>

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

ํ•œ์ค„์— ์ด์–ด ์“ฐ๋‚˜ ์„ธ์ค„๋กœ ๋‚˜๋ˆ ์„œ ์“ฐ๋‚˜ ์ถœ๋ ฅ ๊ฒฐ๊ณผ๋Š” ๊ฐ™์Šต๋‹ˆ๋‹ค.