We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
##冒泡排序
#include<stdio.h> int main() { int i,j,t,a[10]; printf("请输入十个数字:\n"); for(i=0; i<10; i++) { scanf("%d",&a[i]); } printf("\n"); for(j=0; j<9; j++) { for(i=0; i<=9-j; i++) { if(a[i]>a[i+1]) { t=a[i]; a[i]=a[i+1]; a[i+1]=t; } } } printf("数字的排序:\n"); for(i=0; i<=9; i++) { printf("%3d",a[i]); } return 0; } //#include<stdio.h> //int main() //{ // int i,j,t,a[10]; // printf("请输入十个数字:\n"); // for(i=0; i<10; i++) // { // scanf("%d",&a[i]); // } // printf("\n"); // for(j=0; j<9; j++) // { // for(i=0; i<=9-j; i++) // { // if(a[i]>a[i+1]) // { // t=a[i]; // a[i]=a[i+1]; // a[i+1]=t; // } // } // } // printf("数字的排序:\n"); // for(i=0; i<=9; i++) // { // printf("%3d",a[i]); // } // return 0; //}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
##冒泡排序
The text was updated successfully, but these errors were encountered: