blob: a77dcba5f852a3a97f1cc5271e8193b3c8c462dc (
plain)
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
|
/*
Challenge 001
Challenge #1
Write a script to replace the character ‘e’ with ‘E’ in the string
‘Perl Weekly Challenge’. Also print the number of times the character ‘e’
is found in the string.
*/
#include <iostream>
#include <cstdlib>
int main(int argc, char* argv[]) {
if (argc == 2) {
int n = atoi(argv[1]);
for (int i = 1; i <= n; i++) {
if (i%15==0)
std::cout << "fizzbuzz" << std::endl;
else if (i%3==0)
std::cout << "fizz" << std::endl;
else if (i%5==0)
std::cout << "buzz" << std::endl;
else
std::cout << i << std::endl;
}
}
}
|