C++一个长方形的长是9cm,宽是4cm。请编程计算长方形的周长和面积。第一行输出

1个回答
展开全部
摘要 include using namespace std;int main(){ double length = 9.0; // 长方形的长为9cm double width = 4.0; // 长方形的宽为4cm double perimeter = 2 * (length + width); // 计算长方形的周长 double area = length * width; // 计算长方形的面积 cout << "长方形的周长为:" << perimeter << "cm" << endl; // 输出长方形的周长 cout << "长方形的面积为:" << area << "cm²" << endl; // 输出长方形的面积 return 0;}
咨询记录 · 回答于2023-03-11
C++一个长方形的长是9cm,宽是4cm。请编程计算长方形的周长和面积。第一行输出
include using namespace std;int main(){ double length = 9.0; // 长方形的长为9cm double width = 4.0; // 长方形的宽为4cm double perimeter = 2 * (length + width); // 计算长方形的周长 double area = length * width; // 计算长方形的面积 cout << "长方形的周长为:" << perimeter << "cm" << endl; // 输出长方形的周长 cout << "长方形的面积为:" << area << "cm²" << endl; // 输出长方形的面积 return 0;}
以下是一个使用 C++ 编程语言计算长方形周长和面积的示例代码:#include using namespace std;int main() { int length = 9; // 长方形长度 int width = 4; // 长方形宽度 // 计算长方形周长 int perimeter = 2 * (length + width); cout << "长方形周长为:" << perimeter << "cm" << endl; // 计算长方形面积 int area = length * width; cout << "长方形面积为:" << area << "cm²" << endl; return 0;}
#include int main() { int chinese = 98; int math = 97; int english = 90; int total = chinese + math + english; // 计算总分 float average = (float) total / 3; // 计算平均分,需要将总分转为浮点型 printf("小明同学的总分是:%d\n", total); // 输出总分 printf("小明同学的平均分是:%.2f\n", average); // 输出平均分,保留两位小数 return 0;
发这段代码给我,我要复制
#include int main() { int chinese = 98; int math = 97; int english = 90; int total = chinese + math + english; float average = (float) total / 3; printf("小明同学的总分是:%d\n", total); printf("小明同学的平均分是:%.2f\n", average); return 0;}
发那个图片里的代码给我
#include int main() { int chinese = 98; int math = 97; int english = 90; int total = chinese + math + english; float average = (float) total / 3; printf("小明同学的总分是:%d\n", total); printf("小明同学的平均分是:%.2f\n", average); return 0;}
这个就是
啥意思。
C++用代码
// MS Visual C++ memory leak debug tracing#if defined(_MSC_VER) && defined(_DEBUG)# define _CRTDBG_MAP_ALLOC# include #endif
// MS Visual C++ memory leak debug tracing#if defined(_MSC_VER) && defined(_DEBUG) _CrtSetDbgFlag(_CrtSetDbgFlag(_CRTDBG_REPORT_FLAG) | _CRTDBG_LEAK_CHECK_DF);#endif
// C++11 override#if defined(_MSC_VER) || (defined(__GNUC__) && (__GNUC__ >= 5)) \ || (defined(__clang__) && (defined (__cplusplus)) && (__cplusplus >= 201103L)) \ || defined(__CPPCHECK__)# define OVERRIDE override#else# define OVERRIDE#endif// C++11 noexcept#if (defined(__GNUC__) && (__GNUC__ >= 5)) \ || (defined(__clang__) && (defined (__cplusplus)) && (__cplusplus >= 201103L)) \ || defined(__CPPCHECK__)# define NOEXCEPT noexcept#else# define NOEXCEPT#endif// C++11 no
time_t now = time(0); tm ltm; localtime_s(<m, &now); std::string sRet; char sRetBuf[80]; sprintf_s(sRetBuf, sizeof(sRetBuf), "%4d/%02d/%02d %02d:%02d:%02d", (1900 + ltm.tm_year), (1 + ltm.tm_mon), (ltm.tm_mday), ltm.tm_hour, ltm.tm_min, ltm.tm_sec);
gmtime_s 和localtime_s 区别:(1).gmtime将time_t转换为UTC时间,UTC的全称为Coordinated Universal Time,即世界标准时间。(2).localtime将time_t转换为本地时间(local time)。北京时间比UTC时间早8小时。Note: 获取毫秒级的当前时间可以用getsystemtime
SYSTEMTIME st; GetSystemTime(&st);
下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消