You are not typing the rest, just typing the first one is already going to the last one.
#include <iostream>
#include<stdio.h>
int main(void) {
int n1,n2,pim,rn1,rn2,rpim,rfinal;
rn1=n1*4;
rn2=n2*4;
rpim=pim*2;
rfinal=(rn1+rn2+rpim)/10;
printf("Entre com a Primeira Nota\n");
scanf("&i",n1);
printf("Entre com a Segunda Nota\n");
scanf("&i",n2);
printf("Entre com o Pim");
scanf("&i",pim);
printf("Nota Final e %i",rfinal);
return 0;
}