1.
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
#include<ctype.h>
#include<string.h>
int main() {
int i, temp, swapped;
int howMany = 10;
int goals [howMany];
for(i=0; i<howMany; i++){
goals[i] = (rand()%25 )+1;
}
printf("Original List\n");
for(i=0; i<howMany; i++) {
printf("%d \n", goals[i] );
}
while(1) {
swapped = 0 ;
for(i=0; i<howMany-1; i++){
}
}
return 0;
}
2.
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
#include<ctype.h>
#include<string.h>
int main() {
int i, temp, swapped;
int howMany = 10;
int goals [howMany];
for(i=0; i<howMany; i++){
goals[i] = (rand()%25 )+1;
}
printf("Original List\n");
for(i=0; i<howMany; i++) {
printf("%d \n", goals[i] );
}
while(1) {
swapped = 0 ;
for(i=0; i<howMany-1; i++){
}
}
return 0;
}
2.
int main() {
int i, temp, swapped;
int howMany = 10;
int goals [howMany];
for(i=0; i<howMany; i++){
goals[i] = (rand()%25 )+1;
}
printf("Original List\n");
for(i=0; i<howMany; i++) {
printf("%d \n", goals[i] );
}
while(1) {
swapped = 0 ;
for(i=0; i<howMany-1; i++){
int temp = goals[i];
goals[i] = goals [i+1];
goals[i+1] = temp;
swapped = 1;
}
}
if(swapped==0) {
break;
}
}
printf("\nSorted List\n");
for(i=0; i<howMany; i++) {
printf("%d \n", goals[i]);
}
return 0;
}
Comments
Post a Comment