Advertisement
MatheusMagnani

Untitled

Oct 3rd, 2015
349
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.48 KB | None | 0 0
  1. int main()
  2. {
  3.     int x,y,i, v1;
  4.     int resultado;
  5.  
  6.     cout<<"Digite um numero positivo: ";
  7.     cin>>x;
  8.  
  9.     while(x < 0){
  10.         cout<<"Digite o numero POSITIVO novamente: ";
  11.         cin>>x;}
  12.  
  13.     cout<<"Digite mais um numero positivo: ";
  14.     cin>>y;
  15.  
  16.     while(y < 0){
  17.         cout<<"Digite o numero POSITIVO novamente: ";
  18.         cin>>y;}
  19.  
  20.     v1 = x;
  21.  
  22.     for(i=0;i<y;i++)
  23.     {
  24.         resultado = x * v1;
  25.     }
  26.     cout<<" "<<resultado;
  27.     return 0;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement