上一页 1 ··· 28 29 30 31 32
摘要: 定义并实现一个矩形类,有长和宽两个属性,由成员函数计算矩形的面积。 #include <iostream>using namespace std; void Rectangle::setLength(int l) { length=l; } void Rectangle::setWidth(int 阅读全文
posted @ 2023-04-12 21:10 涨涨涨张 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 计算正五边形的周长和面积 #include <bits/stdc++.h>using namespace std;int main(){ double n,S,C; double a,b; cin>>n; a=sqrt(5); b=25+10*a; S=sqrt(b)/4*n*n; cout<<S< 阅读全文
posted @ 2023-04-11 20:11 涨涨涨张 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 简单的C++程序实例 #include<iostream> using namespace std; int main() { cout<<"hello!"<<endl; cout<<"welcom to C++!"<<endl; return 0; } 输出: Hello! welcome to 阅读全文
posted @ 2023-04-10 21:08 涨涨涨张 阅读(9) 评论(0) 推荐(0) 编辑
上一页 1 ··· 28 29 30 31 32