C++ int

1 개요[ | ]

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

using namespace std;

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

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

2 같이 보기[ | ]