0

How to write c++ code to print the multiplication of 5

16th Jul 2017, 7:30 PM
Waleed Yousif Taha Tai Allah
Waleed Yousif Taha Tai Allah - avatar
2 Respostas
+ 2
std::cout << 5 * 5; ?
16th Jul 2017, 8:00 PM
Jonas Geiler
Jonas Geiler - avatar
+ 1
using namespace std; int I; for (I=1; I <10; I++){ cout << 5*I << \t; }
16th Jul 2017, 9:17 PM
Shervin Jarrahi
Shervin Jarrahi - avatar