Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

// FARAN NAJAF 19590

#include<iostream>
using namespace std;
int main()
{
int guess,win,user;
win=0;
guess=32;
for(int i=0;i<=100;i++)
{
cin>>user;
if(user==guess)
{
win++;
}
}
guess++;
cout<<"Win = "<<win<<endl;
system("pause");
return 0
}

You might also like