Finished first group of assignments
This commit is contained in:
15
programs/prog1/main.c
Normal file
15
programs/prog1/main.c
Normal file
@@ -0,0 +1,15 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void) {
|
||||
int x;
|
||||
int y;
|
||||
|
||||
printf("Integer x: ");
|
||||
scanf("%d", &x);
|
||||
printf("Integer y: ");
|
||||
scanf("%d", &y);
|
||||
|
||||
printf("Value of x is %d%% of y.", x * 100 / y);
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user