1、《C++程序设计与实践》上机习题参考答案上机习题11.补充下面的程序,使得程序输出星号图(1)。#include using namespace std; void printstars(int m) //定义能输出一行m个星号的函数 { for (int j=1; j<=m; ++j) cout<<'*'; } int main( ) { int n=6; //n代表要输出的行数 for(int i=1; i<=n; ++i) {
2、 //请在下面写上调用printstars函数的语句,使程序输出(1)图 printstars(2*i-1); cout< using namespace std; void printchs(int m, char ch) //定义能输出m个符号ch的函数 { for (in
3、t j=1; j<=m; ++j) cout<
4、 } 上机习题21.设计gcd函数,输入两个数,求出其最大公约数;#include using namespace std; //自定义函数的原型(即函数声明) int gcd(int,int); int main() { int a,b,g; cin>>a>>b; g=gcd(a,b); cout<<"最大公约数是: "<