14 lines
171 B
C
14 lines
171 B
C
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
|
|
int number;
|
|
|
|
do {
|
|
printf("Give an integer:\n");
|
|
scanf("%d", &number);
|
|
}
|
|
while (number != 42);
|
|
}
|
|
|