'코딩'에 해당되는 글 2건

  1. 2023.05.13 코드 컬러 편집해주는 사이트 컬러스크립트 1

모 오픈 톡방에서 발견해서 공유합니다.

Color Scripter

 

Color Scripter

Simple & Flexible Syntax HighLighter

colorscripter.com

<C++>

1
2
3
4
5
6
7
8
#include <bits/stdc++.h>
using namespace std;
int main(){
    int a,b;
    cin >> a >> b;
    cout << a+b;
    return 0;
}
cs

 

 

<파이썬>

1
2
3
4
import sys
input=sys.stdin.readline
a,b=map(int,input().split())
print(a+b);
cs

 

 

붙여놓고 보니 다른 블로그에서 썼던 양식이 이거구나 싶네

'코딩' 카테고리의 다른 글

[C++ 오류] cannot declare '::main' to be a global variable  (0) 2023.08.07
Posted by 날로카운
,