Pure Programmer
Blue Matrix


Cluster Map

Project: I Think I Can!

Write a program to print "I think I can!" five times each on its own line.

Output
$ g++ -std=c++17 IThinkICan.cpp -o IThinkICan -lfmt $ ./IThinkICan I think I can! I think I can! I think I can! I think I can! I think I can!

Solution