Нужно сделать программу на codeblocks дано число в десятичной системе счисления, нужно пересевти его в другую систему, которую вводишь с клавиатуры.

yuiopaw yuiopaw    1   27.08.2019 12:20    0

Ответы
LLA7A LLA7A  09.09.2020 09:24
#include <stdio.h>
#include <conio.h>
int main() {
    int number, notation, z;
    int i, k=0;
    int A[100];
    printf("Enter the number:   ");
    scanf("%d",&number);
    printf("Enter the notation:   ");
    scanf("%d", &notation);
    while (number>=notation)
    {
        A[k]=number%notation;
        number=number/notation;
        z=number;
        k++;
    }
    printf("Number %d v notation %d =%d", number, notation,z);
    for (i=k-1;i>=0;i--)
        printf("%d", A[i]);

    return 0;
}
ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика