aboutsummaryrefslogtreecommitdiff
path: root/challenge-001/paulo-custodio/cpp/ch-2.cpp
diff options
context:
space:
mode:
author冯昶 <seaker@qq.com>2021-03-15 18:13:51 +0800
committer冯昶 <seaker@qq.com>2021-03-15 18:13:51 +0800
commit8b6be37fe4dac8b4c6489a95e55514b76b298d15 (patch)
treeae36c8ec2c71f606c0e36adaa19dba366a68a0b4 /challenge-001/paulo-custodio/cpp/ch-2.cpp
parent865acfd056fb6f409ec6b1a81d60b931cbcb69fe (diff)
parentc9aec2da6bcb04b488183f09ca94bee488557aff (diff)
downloadperlweeklychallenge-club-8b6be37fe4dac8b4c6489a95e55514b76b298d15.tar.gz
perlweeklychallenge-club-8b6be37fe4dac8b4c6489a95e55514b76b298d15.tar.bz2
perlweeklychallenge-club-8b6be37fe4dac8b4c6489a95e55514b76b298d15.zip
Merge branch 'master' of github.com:seaker/perlweeklychallenge-club
Diffstat (limited to 'challenge-001/paulo-custodio/cpp/ch-2.cpp')
-rw-r--r--challenge-001/paulo-custodio/cpp/ch-2.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/challenge-001/paulo-custodio/cpp/ch-2.cpp b/challenge-001/paulo-custodio/cpp/ch-2.cpp
new file mode 100644
index 0000000000..a77dcba5f8
--- /dev/null
+++ b/challenge-001/paulo-custodio/cpp/ch-2.cpp
@@ -0,0 +1,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;
+ }
+ }
+}