1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <assert.h>
#define print_int_expr_and_value(n)            printf("%6s == %d\n", (#n), (n))

int round_to_nearest_multiple_of_10(int n) {
    if(n % 10 <= 4) {  // if last digit is 0, 1, 2, 3, or 4...
        return (n / 10) * 10; // round down
    }
    else {
        return (n / 10 + 1) * 10; // round up
    }
}

int main(int argc, char* argv[]) {
    print_int_expr_and_value( round_to_nearest_multiple_of_10(23) );
    print_int_expr_and_value( round_to_nearest_multiple_of_10(27) );
    return EXIT_SUCCESS;
}
/* vim: set tabstop=4 shiftwidth=4 fileencoding=utf-8 noexpandtab: */

© Copyright 2022 Alexander J. Quinn         This content is protected and may not be shared, uploaded, or distributed.