摘要:
定义并实现一个矩形类,有长和宽两个属性,由成员函数计算矩形的面积。 #include <iostream>using namespace std; void Rectangle::setLength(int l) { length=l; } void Rectangle::setWidth(int 阅读全文
摘要:
计算正五边形的周长和面积 #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< 阅读全文
摘要:
简单的C++程序实例 #include<iostream> using namespace std; int main() { cout<<"hello!"<<endl; cout<<"welcom to C++!"<<endl; return 0; } 输出: Hello! welcome to 阅读全文