我们只在之前的课程中了解了数据类型,int
我们将进一步了解它们,我们从哪里 开始 :)string
那么让我们仔细看看下面的代码,
`
O'zgaruvchilar : float=> kasr sonlar uchun double=> haqiqiy sonlar uchun char=> faqat bitta belgi uchun string=> tekst,matn uchun bool=> (boolean)> true(1),false(0) int son = 10; float son1; double son2; char belgi; string ism; bool a; string meningIsmimBu = "Abror"; cout << meningIsmimBu;
你可以在上面看到,我们已经给了你各种data_type
链接。
此外,我们将向您简要介绍数字的四舍五入。
double a=123.123; float b=4.69; cout<<round(b); cout<<fixed<<setprecision(2)<<a;
在round
这些表达式的第一个中,我们使用该表达式对数字进行四舍五入,在下一个表达式中,我们使用fixed<<setprecision(2)<<a;
该表达式四舍五入到多少位。
要使用这些表达式,我们需要使用#include<iomanip>
和#include<iostream>
库。