C++ | 변수 및 날짜 유형
데이터 유형
정수 :
짧은, 긴, int (butun sonlar);
실수 :
float, double (kasr sonlar);
성격 :
숯불(벨기에어).
int age=14;
cout << age + 5 * 26 << endl; (144)
age= -15
선언
int age=14;
cout << age + 5 * 26 << endl; (144)
age= -15
int height;
weight double;
float radius;
키워드
과제
son=25;
초기화
int 6 = 16;
O'zgaruvchi nomi harflar, raqamlar va _ belgisidan iborat bo'lishi kerak.
int a=5;
int b=a;
int c=a+b;
int a;
float b; int a,c;
int c; float b,d;
float d;
쓰레기 가치
int a= 123.45 --> 123
float a= 123 --> 123.00
int vazn = (int)[majburlash] 120.123
int a=10;
int b= a+10;
int c= a+b;int d+ a+b+c;
a=b=c=d=60
친 >>
char belgi= 'a'
cout << (char) (belgi/3) << endl; [majburlash]
이오마닙
setw()
cout << setw(15) << son << endl; [by default right-aligned]
cout << left << setw (15) << son << endl;
세트필('')
setw()
orqali ajratilgan yacheykalarni belgilar bn to'ldiradi Reference
이 문제에 관하여(C++ | 변수 및 날짜 유형), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mohira21/c-variables-and-date-types-7d6텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)