C++da Variables and Data types

Data types

Int :

short, long, int (butun sonlar);

Real number :

float, double (kasr sonlar);

Character :

char (belgilar).

int age=14;
cout << age + 5 * 26 << endl; (144)
age= -15

D…


This content originally appeared on DEV Community and was authored by NilufarBukhorova

Data types

Int :

short, long, int (butun sonlar);

Real number :

float, double (kasr sonlar);

Character :

char (belgilar).

  • int age=14;
  • cout << age + 5 * 26 << endl; (144)
  • age= -15

Declaration

  • bu o'zgaruvchilarni e'lon qilish;
    • int son;

Assignment

  • bu o'zgaruvchiga qiymat o'zgartirish;
    • son=25;

Initalization

  • o'zgaruvchini e'lon qiish vaqtida birdaniga qiymat berish;
    • int boshqason = 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;

Garbage value

  • declaration kiritilsayu, o'zgaruvchi miqdori kiritilmasa councilda chiqadigan taxminiy sonlar
   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

cin >>

  • o'zgaruvchini o'qiydigan komanda

char --> Ascii table

  • char belgi= 'a'

  • cout << (char) (belgi/3) << endl; [majburlash]

iomanip

  • input output manipulation, kutubxona

setw()

  • o'zgaruvchi uchun print qlishda bo'sh katakchalar so'raydi
    • cout << setw(15) << son << endl; [by default right-aligned]
    • cout << left << setw (15) << son << endl;

setfill('')

setw() orqali ajratilgan yacheykalarni belgilar bn to'ldiradi


This content originally appeared on DEV Community and was authored by NilufarBukhorova


Print Share Comment Cite Upload Translate Updates
APA

NilufarBukhorova | Sciencx (2022-04-27T21:47:07+00:00) C++da Variables and Data types. Retrieved from https://www.scien.cx/2022/04/27/cda-variables-and-data-types/

MLA
" » C++da Variables and Data types." NilufarBukhorova | Sciencx - Wednesday April 27, 2022, https://www.scien.cx/2022/04/27/cda-variables-and-data-types/
HARVARD
NilufarBukhorova | Sciencx Wednesday April 27, 2022 » C++da Variables and Data types., viewed ,<https://www.scien.cx/2022/04/27/cda-variables-and-data-types/>
VANCOUVER
NilufarBukhorova | Sciencx - » C++da Variables and Data types. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/04/27/cda-variables-and-data-types/
CHICAGO
" » C++da Variables and Data types." NilufarBukhorova | Sciencx - Accessed . https://www.scien.cx/2022/04/27/cda-variables-and-data-types/
IEEE
" » C++da Variables and Data types." NilufarBukhorova | Sciencx [Online]. Available: https://www.scien.cx/2022/04/27/cda-variables-and-data-types/. [Accessed: ]
rf:citation
» C++da Variables and Data types | NilufarBukhorova | Sciencx | https://www.scien.cx/2022/04/27/cda-variables-and-data-types/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.