Você está na página 1de 1

/************************************************************************

******

Online C Compiler.
Code, Compile, Run and Debug C program online.
Write your code in this editor and press "Run" button to compile and
execute it.

*************************************************************************
******/

#include <stdio.h>
int main ()
{
char nome[20];
int idade;
float nota;
printf("Nome:");
scanf("%s", &nome);
printf("idade:");
scanf("%d", &idade);
printf("Nota da Prova:");
scanf("%f", &nota);
printf("O nome digitado foi: %s idade: %d Nota da prova: %05.2f",
nome, idade, nota);
return 0;
}

Você também pode gostar