赞
踩
编写一个能够输出 Hello,World! 的程序。
输出
Hello,World!
#include<iostream>
using namespace std;
int main(){
cout <<"Hello,World!"<<endl;
return 0;
}
用 * 构造一个对角线长 55 个字符,倾斜放置的菱形。
没有输入要求。
如样例所示。用 * 构成的菱形。
输出
*
***
*****
***
*
#include<iostream>
using namespace std;
int main(){
cout <<" * "<<endl;
cout <<" *** "<<endl;
cout <<"*****"<<endl;
cout <<" *** "<<endl;
cout <&
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。