-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.cpp
90 lines (77 loc) · 1.61 KB
/
test.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
// #include "iostream"
// using namespace std;
//
// int main(int argc, char const *argv[]) {
// int input;
// cout << "請輸入最長邊" << '\n';
// cin >> input;
// for (size_t i = 0; i <= input; i++) {
// for (size_t j = 0; j <= intut - i; j++) {
// cout << " ";
// }
// for (size_t k = 0; k <= i*2; k++) {
// cout << "#" ;
// }
// cout << endl;
// }
// }
// #include "iostream"
// using namespace std;
//
// int main(int argc, char const *argv[]) {
// int input;
// cout << "請輸入最長邊" << '\n';
// cin >> input;
//
// for (size_t i = 0; i <= input; i++) {
// if(i <= input * 2 - 1) {
// for (size_t j = 0; j <= input - i; j++) {
// cout << " ";
// }
// for (size_t k = 0; k <= i*2 - 1; k++) {
// cout << "#" ;
// }
// cout << endl;
// }else {
// for (size_t j = input-1; j <= input - i; j--) {
// cout << " ";
// }
// for (size_t k = input; k <= i*2 - 1; k--) {
// cout << "#" ;
// }
// cout << endl;
// }
// }
// }
//
// #include <stdio.h>
// int main(){
// for(int m=0;m<=4;m++){
// for(int n=0;n<=m;n++){
// printf(" ");
// }
// for(int a=0;a<9-m*2;a++){
// printf("*");
// }
// printf("\n");
// }
//
//
// return 0;
// }
#include "iostream"
using namespace std;
int main(int argc, char const *argv[]) {
int input;
cout << "請輸入最長邊" << '\n';
cin >> input;
for (size_t i = 0; i < input; i++) {
for (size_t j = 0; j <= input - i; j++) {
cout << " ";
}
for (size_t k = 0; k <= i*2 ; k++) {
cout << "#" ;
}
cout << endl;
}
}