Skip to content

Commit cc834f9

Browse files
committed
Updated 01 b5
1 parent d81e8d4 commit cc834f9

File tree

1 file changed

+6
-13
lines changed

1 file changed

+6
-13
lines changed

O1/O1_B5.cpp

+6-13
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,14 @@
11
#include <iostream>
2-
#include <vector>
2+
33

44
int main(){
55

6-
std::vector<int> number;
7-
int i =10;
6+
std::string secondHalf = "race";
7+
std::string firstHalf = "car";
88

9-
for(int factors =i; factors>0;factors--){
10-
if(i %factors == 0){
11-
number.push_back(factors);
12-
}
13-
14-
}
9+
std::string fullWord = secondHalf.append(firstHalf);
1510

16-
for(int j = 0; j< number.size(); j++){
17-
std::cout<< number.at(j)<< ' ';
18-
}
19-
11+
std::cout<<fullWord<<std::endl;
2012

13+
2114
}

0 commit comments

Comments
 (0)