개발 공부(39)
-
1079
#include using namespace std; int main() { char c; while (true) { cin >> c; //변수를 입력한다 cout
2023.07.21 -
코드업기초 1077
#include using namespace std; int main() { int n = 0; cin >> n; for (int i = 0; i
2023.07.20 -
1078 코드업
#include using namespace std; int main() { int sum = 0; int n = 0; cin >> n; for ( int i = 0; i < n; i++) { if (i % 2 == 0) { //짝수만 합친다 sum += i; } } cout
2023.07.20 -
1076 문제
#include using namespace std; int main() { char x,t='a'; //초기값 cin >> x; //입력값 do { cout
2023.07.20 -
Uncaught TypeError:$ajax is not a function error
자바스프링 하다가 js와 연동할떄 있었다 계속 $ajax쪽에서 에러가 나길래 구글링해봤는데$.ajax를 사용하기위해서 slim제거해야지 오류가 해결된다 참고하자 //slim 제거하고사용하자 Neither of the answers here helped me. The problem was: I was using the slim build of jQuery, which had some things removed, ajax being one of them. https://stackoverflow.com/questions/18271251/typeerror-ajax-is-not-a-function TypeError: $.ajax(...) is not a function? I'm attempting to creat..
2023.02.21 -
깃허브 기초적 명령어들
git init git add . git commit -m "환경세팅완료 v1" git remote add origin 주소 git push origin master git init 깃허브 시작할떄 무조건 사용한다 git add . 커밋할거 모두 추가 라는 뜻 git commit -m 커밋할때 옆에 저장하기 git remote add origin +주소 저장할떄 주소 자기가 저장할 레파지토리 git push origin master 마스터 푸쉬한다
2023.02.16