September 2018 1 46 Report

Pomozcie. prosze o wyjasnienie tego kodu napisanego w DevC++. tzn chodzi mi o przetlumaczenie co oznacza kazda linijka tego kodu, jestem laikiem jesli chodzi o programowanie. Prosze o pomoc.

#include <cstdlib>

#include <iostream>


using namespace std;
int main(int argc, char *argv[])

{

int a,b,s,m,n,i;

cout<<"Podaj M: ";cin>>m;

cout<<"Podaj N: ";cin>>n;

for (i=1;i<=n;i++)

{

a=i;s=0;

while (a!=0)

{

b=a%10;

s=b+s;

a=a/10;

}

if(s*s==m) cout<<"Liczba: "<<i<<" suma cyfr wynosi: "<<s<<" kwadrat sumy cyfr: "<<m<<endl;

}


system("PAUSE");

return EXIT_SUCCESS;

}


Recommend Questions



Life Enjoy

" Life is not a problem to be solved but a reality to be experienced! "

Get in touch

Social

© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.