C++ int

1 개요[ | ]

C++ int
  • 용량: 4바이트
  • 값의 범위: –2,147,483,648 ~ 2,147,483,647
#include <iostream>

using namespace std;

int main() {
    int x=10;
    int y=25;
    int z=x+y;

    cout<<"Sum of x+y = " << z;
}

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}