2024/03/08 3

Google Professional Cloud Architect Exam Actual Questions#1

정말이지 혹여나 이것을 보는 사람이 있을까봐 당부한다면.. 정답이 100% 정확하다고는 할 수 없다. 1. Your company has decided to make a major revision of their API in order to create better experiences for their developers. They need to keep the old version of the API available and deployable, while allowing new customers and testers to try out the new API. They want to keep the same SSL and DNS records in place to serve both APIs. Wha..

보안/교육 2024.03.08

C++ if else문 총정리

1. if else문의 개념 if문은 조건이 참이면 문장 블록을 실행하고, 조건이 거짓이면 실행하지 않는다는 것으로 그친다. 그러나 조건이 거짓일 경우 다른 것을 수행하려면 어떻게 해야 할까? 이때 등장하는 것이 if else다. 조건이 거짓일 때 코드 블록을 실행하기 위해 if문과 함께 다른 문장이 사용될 수 있다. 2에서 if문이 실행되는데, if가 참이면 우리가 알던 것처럼 if문 내의 블록이 그대로 수행된다. 그런데 여기서 else가 존재하므로, if문이 거짓일 경우 else 블록을 넘어가 else 안에 있는 내용이 수행된다. 구문: if (condition) { // Executes this block if // condition is true } else { // Executes this bl..

C++ 2024.03.08

C++ if문 총정리

1. if문의 개념 if문은 가장 간단한 의사 결정문이다. 특정한 종류의 조건에 따라 대상이 실행될지, 실행되지 않을지를 결정하는 데 사용된다. 위에서 조건이 참이면 4가 그대로 진행되고, 조건이 거짓이면 if 블록을 탈출하여 5로 진행된다. 구문: if(condition) { // Statements to execute if // condition is true } 2. if 구문 예시 예시1: // C++ program to illustrate If statement #include using namespace std; int main() { int i = 10; if (i < 15) { cout

C++ 2024.03.08
728x90