Skip to content

Instantly share code, notes, and snippets.

Created June 2, 2010 09:47
Show Gist options
  • Save anonymous/422158 to your computer and use it in GitHub Desktop.
Save anonymous/422158 to your computer and use it in GitHub Desktop.
#include
using namespace std;
int main()
{
int a=0,b=0,c,d,e;
while(1)
{
a++;
d=0;
b=0;
cout << "Sample Input" << a << " :\n";
while(b<1 || b>99)
cin >> b;
for (e=0;e<=b;e++)
{
c=e/10;
if (c==3 || e-c*10==3)
d++;
}
cout << "Sample Output" << a << " :\n" << d << endl << endl;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment