Hola me podrian ayudar esta tabla con while:
N 10*N 100*N 1000*N
1 10 100 1000
2 20 200 2000
3 30 300 3000
4 40 400 4000
5 50 500 5000
6 60 600 6000
7 70 700 7000
8 80 800 8000
9 90 900 9000
10 100 1000 10000
| |||
tabla con while Hola me podrian ayudar esta tabla con while: N 10*N 100*N 1000*N 1 10 100 1000 2 20 200 2000 3 30 300 3000 4 40 400 4000 5 50 500 5000 6 60 600 6000 7 70 700 7000 8 80 800 8000 9 90 900 9000 10 100 1000 10000 |
| |||
Respuesta: tabla con while Cita: #include <iostream> using namespace std; int main() { for(int x = 1; x <= 10; x++) { cout << x; cout <<"\t"; cout << x *10; cout <<"\t"; cout << x *100; cout <<"\t"; cout << x *100; cout <<"\n"; } system("PAUSE"); return
__________________ si tienes entre 18 y 20 años... entonces tienes 19 años xD |
Etiquetas: |