Skip to main content

Classroom Numbers of AIUB [C Programming]

Problem description:
 Consider the room numbers of our campus - 423, 432, 441, 234, 534, 132. Here first digit represents campus number, second digit represents floor number and the third number represents room number in that floor. Write a program that will take a three digit number (like 423) and output the Campus, Floor, and Room Number according to the input.

INPUT: 423
OUTPUT: Campus 4, Floor 2, Room 3

Code:

#include <stdio.h>
int main()
{
    int n, campus, floor, room;
    printf("Enter a room number: ");
    scanf("%d", &n);
    room = n%10;
    floor = ((n - room)%100)/10;
    campus = n/100;
    printf("Campus %d, Floor %d, Room %d", campus, floor, room);
    return 0;
}

Comments

Popular posts from this blog

Currency Converter - USD & BDT [C Programming]

#include <stdio.h> void main() {     int i;     float usd, bdt;     printf("Press 1 to convert USD to BDT\nPress 2 to convert BDT to USD\n");     printf("Enter your choice: ");     scanf("%d", &i);     switch(i)     {         case 1:             printf("Enter amount in USD: ");             scanf("%f", &usd);             bdt = usd * 80;             printf("1 USD = 80 BDT\n");             printf("%0.3f USD = %0.3f BDT", usd, bdt);             break;         case 2:   ...

Take Integer, Float, Character as Input & Print Them in Console [C Programming]

#include <stdio.h> void main() {     char ch;     int i;     float f;     printf("Enter a character: ");     scanf("%c", &ch);     printf("Enter an integer: ");     scanf("%d", &i);     printf("Enter a fraction number: ");     scanf("%f", &f);     printf("Character: %c\nInteger: %d\nFloat: %f", ch, i, f); }