#include"stdio.h"void xuanze(){ int i; for (i=0; i<10; i++)//判断5开头的两位数 { if ((50+i)%3 == 0) printf("%d\n",50+i); } for (i=1; i<10; i++)//判断5结尾的两位数 { if ((5+10*i)%3==0) printf("%d\n", 5+10*i); } }void main(){ xuanze(); }