Faça um programa que mostre os números de 1 a 500. Utilizar linguagem C++.
Soluções para a tarefa
Respondido por
0
#include
#define LIMIT 500
using namespace std;
int main(){
for(int index = 0; index < LIMIT; index++){
cout << index + 1 << endl;
}
return 0;
}
#define LIMIT 500
using namespace std;
int main(){
for(int index = 0; index < LIMIT; index++){
cout << index + 1 << endl;
}
return 0;
}
Perguntas interessantes