You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
907 B
50 lines
907 B
#include <stdio.h>
|
|
void menu();
|
|
int main()
|
|
{
|
|
menu();
|
|
}
|
|
void menu()
|
|
{
|
|
for (int i = 0; i < 30; i++)
|
|
{
|
|
printf(" ");
|
|
}
|
|
printf("1.Input\n");
|
|
for (int i = 0; i < 30; i++)
|
|
{
|
|
printf(" ");
|
|
}
|
|
printf("2.Output\n");
|
|
for (int i = 0; i < 30; i++)
|
|
{
|
|
printf(" ");
|
|
}
|
|
printf("3.Order\n");
|
|
for (int i = 0; i < 30; i++)
|
|
{
|
|
printf(" ");
|
|
}
|
|
printf("4.Quit\n");
|
|
char c;
|
|
scanf("%c", &c);
|
|
if (c == 'i')
|
|
{
|
|
printf("You are trying to Input info\n");
|
|
}
|
|
else if (c == 'o')
|
|
{
|
|
printf("You are trying to Output info\n");
|
|
}
|
|
else if (c == 'm')
|
|
{
|
|
printf("You are trying to Make things ordered\n");
|
|
}
|
|
else if (c == 'q')
|
|
{
|
|
printf("You are about to Quit\n");
|
|
}
|
|
else{
|
|
printf("Wrong input\n");
|
|
}
|
|
} |