0-100 arası girilen puanı 0-5 arası nota çeviren C++ Kodları :
#include <iostream>
using namespace std;
int main()
{
setlocale(LC_ALL,"Turkish"); //Türkçe karakter
int puan;
cout<<"Puanı Girin : ";
cin>>puan;
if(puan>100)
{
cout<<"Geçersiz.";
}
else...