C三个数大小排序

#include<stdio.h> #include<conio.h> #include<string.h> main() { int i,j,k,temp; clrscr(); printf("Enter three numbers:"); scanf("%d%d%D",&amp;i,&amp;j,&amp;k); if(i>j) {temp=i;i=j;j=temp;} if(i>k) {temp=i;i=k...
2007-04-28 19:20 | 阅读 1285 次 | 评论 0 条

C杨辉三角

#include<stdio.h> #include<conio.h>//清屏 #include<string.h> main() { int i,j; int yanghui[10][10]; clrscr(); for(i=0;i<10;i++) { for(j=0;j<=i;j++) { yanghui[0]=yanghui=1; } } for(i=2;i<10;i++) { for(j=1;j<=i;j++) { yanghui[j]=yanghu...
2007-04-20 20:07 | 阅读 1362 次 | 评论 0 条
最新评论