fork download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6. int main() {
  7. int age;
  8. double height;
  9. string name;
  10.  
  11. // 사용자 입력 받기
  12. cout << "이름을 입력하세요: ";
  13. cin >> name; // 공백이 있는 이름 입력은 안됩니다.
  14.  
  15. cout << "나이를 입력하세요: ";
  16. cin >> age;
  17.  
  18. cout << "키를 입력하세요: ";
  19. cin >> height;
  20.  
  21. // 입력된 정보 출력
  22. cout << "이름: " << name << endl;
  23. cout << "나이: " << age << "살" << endl;
  24. cout << "키: " << height << "미터" << endl;
  25.  
  26. return 0;
  27. }
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
이름을 입력하세요: 나이를 입력하세요: 키를 입력하세요: 이름: 
나이: 0살
키: 9.88131e-324미터