#include <iostream>
int main() {
for(int i=15; i>=5; i--) {
std::cout << i << std::endl;
}
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <iostream>
int main() {
for(int i=15; i>=5; i--) {
std::cout << i << std::endl;
}
}