Степени на X

Да се напише програма, която позволява да се отпечатат всички степени на x по-малки от y.
Публикувано в 11в с етикети . Постоянна връзка.

3 Responses to Степени на X

  1. kaloyan каза:
    #include <cstdlib>
    #include <iostream>
    
    using namespace std;
    
    int main(int argc, char *argv[])
    {
        int x,y,p;
        cout<<"Vavedi X ";
        cin>>x;
        cout<<"Vavedi Y ";
        cin>>y;
        p=x;
        
        while(p<y){
          cout<<p<<" "; 
          p=p*x;     
        }
        cout<<endl;
        system("PAUSE");
        return EXIT_SUCCESS;
    }
  2. Lubomir Dizela каза:
    #include <cstdlib>
    #include <iostream>
    
    using namespace std;
    
    int main(int argc, char *argv[])
    {
        int x, y, p;
        cout<<"Vuvedete stoinost na X ";
        cin>>x;
        cout<<"Vuvedete stoinost na Y ";
        cin>>y;
        p=x;
        while(p<y)
        {cout<<p<<" ";
         p=p*x;
         cout<<endl;
        }
        system("PAUSE");
        return EXIT_SUCCESS;
    }
      
  3. sup3rEva каза:
    #include <cstdlib>
    #include <iostream>
    
    using namespace std;
    
    int main(int argc, char *argv[])
    {  int x,y,p;
      cout<<"Vyvedete X i Y"<<endl;
      cin>>x>>y;
      p=x;
      while (p<y) {
           cout<<p<< " ";
        p=p*x;
    }       
        system("PAUSE");
        return EXIT_SUCCESS;
    }

Вашият коментар