Created
June 2, 2010 09:47
-
-
Save anonymous/422158 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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