简单的C语言程序合集

输出九九乘法表 1 #include <stdio.h> 2 int main() 3 { 4 int i,j; 5 for(i=1;i<=9;) 6 { 7 for(j=1;j<=9;j) 8 { 9 if(i>=j) 10 { 11
相关文章
相关标签/搜索