Blog Sky
Monday, October 6, 2014
Thursday, October 2, 2014
Exercise array 02
1. Write a program which prints the letters in a char array in reverse order. For example, if the array contains {'c', 's', 'c', '2', '6', '1'}the output (to the terminal) should be "162csc"
2. Write a program : declare a char array and the size of the array (of type char). This function counts the number of digit letters in the char array.
3. Write a program that counts the number of words in a string
4. Write a program that accept two string, after checking if string1 equals string2 then print 'string 1 equals string2', else print string1 less than or greater than string 2.
5. Write a function that scans a character array for the character - and replaces it with _
Sunday, September 28, 2014
Test 2...
#include <stdio.h>
#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int isPrime(int N);
int main(int argc, char *argv[]) {
int N;
printf("Enter a number:");scanf("%d", &N);
int isPrime(int N){
int i;
for(i=2; i<N; i++){
if(N%i != 0){
return 1;
}
else{
return 0;
}
}
}
if(isPrime(N)){
printf("Number is prime");
}
else{
printf("Number is not prime");
}
return 0;
}
Exercise_array 1(day 5)
1. Write a program that asks the user to type 10 integers of an array. The program must compute and write how many integers are greater than or equal to 10.
2. Write a program that asks the user to type 10 integers of an array. The program must output the largest element in the array, and the index at which that element was found.
3. Input values are accepted from the user into the array. Displays highest of the entered values. Prints average of values entered.
4. Write a program that accepts the following numbers in an array and reverses the array
6. Write a program that asks the user to type 10 integers of an array and an integer V. The program must search if V is in the array of 10 integers. The program writes "V is in the array" or "V is not in the array".
7. Write a program that asks the user to type 10 integers of an array and an integer value V. The program must search if the value V exists in the array and must remove the first occurrence of V, shifting each following element left and adding a zero at the end of the array. The program must then write the final array
8. Write a program that asks the user to type 10 integers of an array and an integer value V and an index value i between 0 and 9. The program must put the value V at the place i in the array, shifting each element right and dropping off the last element. The program must then write the final array
Exercise 11: dowhile-loop (day4)
1. Declare a variable which has the age of the person. Print the user’s name as many times as his age
2. The program displays even numbers from 1 to 30.
3. The program displays numbers from 10 to 0 in the reverse order
4. The program will accept integers and display them until zero (0) is entered
5. Find the factorial of a number.
Tuesday, September 23, 2014
Assignment
int main(int argc, char *argv[]) {
float x,y[12];
int i,j;
for (i = 0; i < 12; i++){
printf("Month %d : ", i+1);
scanf("%f", &y[i]);
}
for (i = 11; i > 0; i--){
for (j = 11; j >= 12 - i; j--){
if (y[j] > y[j-1]){
x = y[j-1];
y[j-1] = y[j];
y[j] = x;
}
}
}
printf("Ssort descending:\n");
for (i = 0; i < 12; i++){
printf("%.2f ", y[i]);
}
printf("\nTop 3 months with highest sales amount\n");
for (i = 0; i < 3; i++){
printf("%.2f \n", y[i]);
}
return 0;
}
float x,y[12];
int i,j;
for (i = 0; i < 12; i++){
printf("Month %d : ", i+1);
scanf("%f", &y[i]);
}
for (i = 11; i > 0; i--){
for (j = 11; j >= 12 - i; j--){
if (y[j] > y[j-1]){
x = y[j-1];
y[j-1] = y[j];
y[j] = x;
}
}
}
printf("Ssort descending:\n");
for (i = 0; i < 12; i++){
printf("%.2f ", y[i]);
}
printf("\nTop 3 months with highest sales amount\n");
for (i = 0; i < 3; i++){
printf("%.2f \n", y[i]);
}
return 0;
}
Exercise:For loop (day 4)
1. Declare a variable which has the age of the person. Print the user’s name as many times as his age:
Subscribe to:
Posts (Atom)