How can I make a program that opens a text file, and converts it into a XML file?
The XML might look like:
<curso>
<sigla>LTCGM</sigla>
<NAlunos>1</NAlunos>
<lista_alunos>
<aluno>
<numero>6567</numero>
<nome>Artur Pereira Ribeiro</nome>
<email>[email protected]</email>
<estado>Aprovado</estado>
<media_notas>13</media_notas>
<maior_nota>16</maior_nota>
<menor_nota>11</menor_nota>
</aluno>
</lista_alunos>
</curso>