Skip to content

Instantly share code, notes, and snippets.

@ampulhetadosaber
Last active June 20, 2019 22:15
Show Gist options
  • Save ampulhetadosaber/8c0cc7a9232b5dc7d050b80461ba3803 to your computer and use it in GitHub Desktop.
Save ampulhetadosaber/8c0cc7a9232b5dc7d050b80461ba3803 to your computer and use it in GitHub Desktop.
#include<iostream>
using namespace std;
int main ()
{
int nota;
cin >> nota;
if(nota >= 5)
{
cout << "Passou\n";
}
else
{
cout << "Reprovou\n"
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment