单项选择题

下面程序段输出的i值是()
#include
void main()
{int i;for(i=1;i<=50;i++)
if((i*i>=130)&(i*i<=180))break;
printf("%d\n",i);}

A.10
B.11
C.12
D.13