05.04 Сумата на цифрите

Да се въведат 3 символа и да се изведе сумата на тези от тях, които са цифри.

Публикувано в 12а с етикети , , . Постоянна връзка.

2 Responses to 05.04 Сумата на цифрите

  1. Adrian каза:
    #include <cstdlib>
    #include <iostream>
    
    using namespace std;
    
    int main(int argc, char *argv[])
    {
        int x,c1,c2,c3,c4,c5,c6,suma;
        
        //pitane za chislo
        cout<<"Vuvedi 6 cifreno chislo da te ne biam: ";
        cin>>x;
        
        //izvurshvane na nujnite presmqtaniq
        c1=x/100000;
        c2=x%100000/10000;
        c3=x%10000/1000;
        c4=x%1000/100;
        c5=x%100/10;
        c6=x%10;
        suma=c1+c2+c3+c4+c5+c6;
        
        //izvejdane na sumata
        cout<<"Sumata brat mi e: "<<suma<<endl;
        
        
        system("PAUSE");
        return EXIT_SUCCESS;
    }
    
  2. Luccar каза:
     
    #include <cstdlib>
    #include <iostream>
    #include <conio.h>
    using namespace std;
    
    int main(int argc, char *argv[])
    {  char b ,a,c,d;
        cout << "tekst \a\a\a   \a\a\a\a     \a\a\a\a      \a\a\a\a\a\a\a\a\a\a\a\a\a\a\a\ a" <<  endl; 
        
        system("PAUSE"); 
        cout << " \n\n"<< endl;
        system("PAUSE"); 
        cout << " \n\n                                    ga6ti \n\n"<< endl;
        system(" PAUSE   ");  
        system("CLS"); 
        system(" PAUSE   ");
        cin >> c ;    
        cout<< (c-'A'+1)*((c>='A')&&(c<='Z'))+ (c-'a'+1)*((c>='a')&&(c<='z'))<< endl;
          system(" PAUSE   ");
          cin>>d;
          cin>>b;
          cin>>a;
      cout<< (d-'0')*((d>='0')&&(d<='9'))+(b-'0')*((b>='0')&&(b<='951+'))+ (a-'0')*((a>='0')&&(a<='9')) <<endl;
      system(" PAUSE   ");
            return EXIT_SUCCESS;
    }
    

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