전체 글11 [코드트리 조별과제] C++ 기초 : 단순 반복문 (2) 9. 반복문 안의 if 1) 2 또는 3의 배수#include using namespace std;int main() { int n; cin >> n; for (int i = 1; i 2) 100점 도달하기#include using namespace std;int main() { int n; cin >> n; for (int i = n; i = 90) cout = 80) cout = 70) cout = 60) cout 3) 출력결과 48 https://www.codetree.ai/missions/4/problems/reading-k201724?&utm_source=clipboard&utm_m.. 2024. 8. 19. [코드트리 조별과제] C++ 기초 : 단순 반복문 (1) 5. 단순 반복문1. for문 a -> b 1씩 증가for( 초기화식 ; 조건식 ; 증감식 ) { 반복할 코드} 1) 차례로 출력 #include using namespace std;int main() { for (int i = 5; i 2) 입력받는 수 부터 100까지 출력#include using namespace std;int main() { int n; cin >> n; for (int i = n; i 3) 출력결과 1https://www.codetree.ai/missions/4/problems/reading-k201517?&utm_source=clipboard&utm_medium=text 4) 출력결과 8https://www.codetree.ai/missi.. 2024. 8. 14. [코드트리 조별과제] C++ 기초 : 조건문 4. 조건문if (조건) { 여기에 조건이 참일 경우에만 수행되는 코드 작성} 1. if 조건문 1) 음수 구별하기#include using namespace std;int main() { int n; cin >> n; cout 2) 큰 수에서 빼기#include using namespace std;int main() { int a, b; cin >> a >> b; if (a > b) cout a) cout 3) 체질량지수 #include using namespace std;int main() { int h, w; int b; cin >> h >> w; b = (10000 * w)/(h * h).. 2024. 8. 6. [코드트리 조별과제] C++ 기초 : 연산자 3. 연산자1. 사칙연산1) 간단한 사칙연산 덧셈(+), 뺄셈(-), 곱셈(*)나눗셈 몫 연산(/), 나머지 연산(%)#include using namespace std;int main() { int a = 9, b = 4; cout 실수 결과를 얻고 싶다면 type을 double형으로 변경해줘야 함.두 type 중 하나만 실수형이면 됨. #include using namespace std;int main() { int a = 9, b = 4; cout 사칙연산 계산 시 type은 더 큰 범위의 type으로 결정#include using namespace std;int main() { double a = 3.5; int b = 4; cout #include using namespace std;int.. 2024. 7. 29. 이전 1 2 3 다음