Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main() {
- int n, d;
- scanf_s("%d %d", &n, &d);
- if ((n > 0) && (d >= 0)) {
- if (d == 0) {
- int suma = 0;
- for (int i = 1; i <= n; i++) {
- suma = suma + i;
- }
- printf("Suma cisiel od 1 po %d je %d.\n", n, suma);
- }
- else if (d > 0) {
- int suma1 = 0;
- for (int j = 1; j <= n; j++) {
- if (j%d == 0) {
- suma1 = suma1 + j;
- }
- }
- printf("Suma cisiel od 1 po %d delitelnych cislom %d je %d.\n", n, d, suma1);
- }
- }
- else {
- printf("Nespravny vstup.\n");
- }
- return 0;
- }
Add Comment
Please, Sign In to add comment