Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include"stdafx.h"
- #include<iostream>
- #include<assert.h>
- int SumDigits(int i)
- {
- int sum = 0;
- while (i != 0)
- {
- sum += i % 10;
- i /= 10;
- }
- return sum;
- }
- int main(int argc, char* argv[])
- {
- system("mode con cols=77 lines=22");
- system("title Лабораторная работа АП №1");
- setlocale(LC_CTYPE, "Russian");
- int a = 1000;
- {
- printf("Вывод чисел от 1 до 1000, которые делятся без остатка на сумму своих цифр:\n+---------------------------------------------------------------------------+\n");
- for (int i = 1; i <= a; ++i)
- {
- if (i % SumDigits(i) == 0)
- {
- printf("%d", i);
- printf(", ");
- }
- }
- }
- printf("\n+---------------------------------------------------------------------------+\n\n");
- system("pause");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement