#include<stdio.h> int main() { int i , t; for(i = 1; i <= 1000; i++) { t = i/10; if(t != 0 && (t%10==5) ) printf("%4d",i); } system("pause"); return 0; }