標題:
990612 C++ 複習:列印星星
[打印本頁]
作者:
stephen
時間:
2010-6-12 10:24
標題:
990612 C++ 複習:列印星星
試利用 for 迴圈寫出以下圖片顯示的結果。
[attach]21[/attach]
作者:
chuangjoy
時間:
2010-6-12 10:44
#include <iostream>
#include <cstdlib>
using namespace std;
int main(void){
for(int i=1; i<=5; i++){
cout << i;
for(int j=1; j<=i; j++){
cout << "*";
}
cout << endl;
}
for(int i=6; i<=9; i++){
cout << i;
for(int j=(10-i); j>=1; j--){
cout << "*";
}
cout << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
yachen392
時間:
2010-6-12 10:44
#include<iostream>
using namespace std;
int main()
{
for(int i=1;i<=9;i++){
cout << i;
if(i<=5){
for(int j=1;j<=i;j++){
cout << "*" ;
} cout << endl;
}
if(i>5){
for(int k=(10-i);k>=1;k--){
cout << "*" ;
} cout << endl;
}
}
system("Pause");
return 0;
}
作者:
b1081081
時間:
2010-6-12 10:47
#include <iostream>
#include <cstdlib>
using namespace std;
int main(void){
for(int i=1; i <= 9; i++){
cout << i;
if(i <= 5){
for(int j = 1; j <= i; j++){
cout << "*" ;
}
cout << endl;
}else{
for(int j = (10-i); j >= 1; j--){
cout << "*" ;
}
cout << endl;
}
}
system("pause");
return 0;
}
複製代碼
作者:
chuangjoy
時間:
2010-6-12 10:48
#include <iostream>
#include <cstdlib>
using namespace std;
int main(void){
for(int i=1; i<=9; i++){
cout << i;
if(i<=5){
for(int j=1; j<=i; j++){
cout << "*";
}
cout << endl;
}else if(i>5){
for(int k=(10-i); k>=1; k--){
cout << "*";
}
cout << endl;
}
}
system("pause");
return 0;
}
複製代碼
作者:
p17johnny
時間:
2010-6-12 10:50
第二版本(只有一個式子)
#include <iostream>
#include <cstdlib>
using namespace std;
int main(void){
for(int i=1;i<= 9; i++){
cout<< i;
if(i <= 5){
for(int j=1; j<=i; j++){
if(j<=i){
cout<< "*";
}
}
cout<<endl;
}
if(i>5){
for(int k=(10-i); k>=1; k--){
cout<<"*";
}
cout<<endl;
}
}
system("pause");
return 0;
}
複製代碼
作者:
p17johnny
時間:
2010-6-12 10:51
第一版本(一大堆東東)
#include <iostream>
#include <cstdlib>
using namespace std;
int main(void){
for(int i=1;i<= 5; i++){
cout<< i;
for(int j=1; j<=i; j++){
cout<< "*";
}
cout<<endl;
}
for(int i=6;i<=9; i++){
cout<< i;
for(int j=(10-i); j>=1; j--){
cout<< "*";
}
cout<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2