#include #include using namespace std; int main (){ struct tp_aluno{ long int RA; string nome; float nota1,nota2; }; tp_aluno alu; cout<<"RA do aluno: "; cin>>alu.RA; cout<<"Nome do aluno: "; cin.ignore(); getline(cin, alu.nome); cout<<"Nota 1: "; cin>>alu.nota1; cout<<"Nota 2: "; cin>>alu.nota2; system("cls"); cout<<"RA :"<