Home C++_iostream-INOUT
Post
Cancel

C++_iostream-INOUT

IN / OUT

cin

scanf. cin >> txt

cout

printf. cout << txt

사용

줄줄이 소세지 마냥 붙여도된다. %d 등 사용X

1
2
3
4
5
6
7
8
9
10
#include <iostream>
int main()
{
    int Age;
    float Hig;
    std::cout << "나이(만), 엔터, 키(소수점), 엔터 \n";
    std::cin >> Age >> Hig;
    std::cout << "나이: " << Age << "\n" << "키: " << Hig << std::endl;
  return 0;
}
1
2
3
4
5
나이(), 엔터, 키(소수점), 엔터
28
164.5
나이: 28
키: 164.5
This post is licensed under CC BY 4.0 by the author.