본문 바로가기

Byungmeo

(76)
[1d] 10869 : 사칙연산 1234567891011121314#include int main () { int A,B; scanf("%d %d",&A,&B); printf("%d\n",A+B); printf("%d\n",A-B); printf("%d\n",A*B); printf("%d\n",A/B); printf("%d\n",A%B); return 0;}cs https://www.acmicpc.net/problem/10869
[1d] 11719 : 그대로 출력하기2 1234567891011121314#include int main () { int a; a = getchar(); while(a != -1) { putchar(a); a = getchar(); } return 0;}cs https://www.acmicpc.net/problem/11719 .. 11719랑 똑같은코드인데 되네?
[1d] 11718 : 그대로 출력하기 1234567891011121314#include int main () { int a; a = getchar(); while(a != -1) { putchar(a); a = getchar(); } return 0;}cs https://www.acmicpc.net/problem/11718 참조 : EOF (End Of File)http://jeonggyun.tistory.com/13열혈 C 프로그래밍 418Page ~
[1d] 1001 : A-B 12345678#include int main () { int a,b; scanf("%d %d",&a,&b); printf("%d",a-b); return 0;}cs https://www.acmicpc.net/problem/1001
[1d] 1000 : A+B 1234567#include int main () { int a,b; scanf("%d %d",&a,&b); printf("%d",a+b);}cs https://www.acmicpc.net/problem/1000
[1d] 2557 : Hello World 123456#include int main () { printf("Hello World!"); return 0;}cs https://www.acmicpc.net/problem/2557
유니티 데이터 경로 OS : Windows 7Engine : Unity 2017.2.0f3 PersonalIDE : MonoDevelop [윈도우 에디터]Application.persistentDataPath : 사용자디렉토리/AppData/LocalLow/회사이름/프로덕트이름 파일 읽기 쓰기 가능Application.dataPath : 프로젝트디렉토리/AssetsApplication.streamingAssetsPath : 프로젝트디렉토리/Assets/StreamingAssets 파일 읽기 쓰기 가능 [윈도우 응용프로그램]Application.persistentDataPath : 사용자디렉토리/AppData/LocalLow/회사이름/프로덕트이름 파일 읽기 쓰기 가능Application.dataPath : 실행파일/실행파일_..
HTML 소스코드 하이라이팅 http://hilite.me/