c語言用goto語句編寫九九乘法表簡單版

c語言用goto語句編寫九九乘法表簡單版 #include"stdio.h" main() { int a=1,b=1; loop:if(a<=9) {web v:if(b<=a) { printf(" %d*%d=%d ",b,a,a*b); b++; goto v; } printf("\n"); a++,b=1; goto loop; } }           
相關文章
相關標籤/搜索