#include<stdio.h>void main(){ int i t r s x; clrscr();
for(i 10;i< 99;i++) { s 0; t i; while(t! 0) { r t 10; t t/10; s s+r; } x (3*s); if(x i) printf(" dn" i); } getch();}
#include<stdio.h>#include<conio.h>void main(){int i o t;clrscr();for(i 10;i< 99;i++){o i 10;t i/10;if(3*(o+t) i){printf("the req num is d" i);break;}}getch();}
#include <stdio.h>#include <conio.h>#include <math.h>void main(){int i j;for(i 0;i<9;i++) {for(j 0;j<9;j +) { if(((i*10)+j) (3*(i+j))) { printf( dn 10i+j); } else { printf( no number is found ); } }}}