-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
62 lines (44 loc) · 1.12 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: main.c
* Author: demo
*
* Created on 29 de Março de 2018, 21:15
*/
#include <stdio.h>
#include <stdlib.h>
/*
*
*/
int main() {
int op;
printf("\n\n\n\t Trabalho prático Algoritmo e Estrutura de dados II");
printf("\n\n\t Algoritmo Desenvolvidos ");
printf("\n\t Bubble Sort -> 1 ");
printf("\n\t Insertion Sort -> 2 ");
printf("\n\t Selection Sort -> 3 ");
printf("\n\t Merge Sort -> 4 ");
printf("\n\t Quick Sort -> 5 ");
do{
printf("\n\n\t Escolha: ");
scanf("%d",&op);
}while(op != 1 && op != 2 && op!=3 && op!=4 && op!=5);
switch(op)
{
case 1:
break;
case 2:
break;
case 3:
break;
case 4:
break;
case 5:
break;
}
return (EXIT_SUCCESS);
}