0
Create a program that will display the word "mahal kong muntinlupa" for 4 times using the for loop. (jump statement: continue)&
I need help :( Show solutions pls.
2 Antworten
0
#include <iostream>
int main(){
int limit = 3;
for(int i = 0; i < limit; i++)
std::cout << "Mahal....\n";
}
0
Thankyou 😇