#include<stdio.h>
#include<conio.h>
#define s scanf
#define p printf
int main()
{
int m, n;
for(m =2; m <=4; m++)
for(n = 5; n >= 3; n--)
p("%d\n", m + n);
getch();
return 0;
}
Write a program that will display "IT'S COLD!" if the temperature is less than 20, "IT'S HOT!" if the temperature is greater than 30, "COOL CLIMATE!" otherwise.
#include<stdio.h>
#include<conio.h>
#define p printf
#define s scanf
int main()
{
int T;
p("Enter temperature: ");
s("%d",&T);
if ( T < 20 )
{
p("IT'S COLD!");
}
else
if ( T > 30 )
{
p("IT'S HOT!");
}
else
{
p("COOL CLIMATE!");
}
getch ();
return 0;
}
Write a program to determine the equivalent grade of each student in a class as follows:
a. Read in the student's name, midterm grade, minor B, and final exam ratings. b. Determine the final grade of the student by formula: final grade = 0.30 of midterm grade + 0.10 of minor B + 0.60 of final exam. c. Determine the equivalent grade for the numerical value obtained by the following grading marks:
Write a program segment that will ask the user if he wants to compute the perimeter or the area of a triangle. If the perimeter is wanted, ask the measure of the three sides and compute for the perimeter. If the are is wanted, ask for the measures of the base and height and compute for the area. Display the computed value.
(Solution)
#include<stdio.h> #include<conio.h>
int CHOICE, PERIMETER, A, B, C, AREA, BASE, HEIGHT;
int main()
{
printf("This program will get the perimeter and are of Triangle\n");
printf("Choices\n");
printf("1.] Perimeter\n");
printf("2.] Area\n");
printf("Enter Choice [1 or 2]: ");
scanf("%d",&choice);
if (choice == 1)
{
printf("Enter Side A: ");
scanf("%d",&A);
printf("Enter Side B: ");
scanf("%d",&B);
printf("Enter Side C: ");
scanf("%d",&C);
PERIMETER = A + B + C;
printf("The perimeter of the area of a triangle is %d",PERIMETER);
}
if (choice == 2)
{
printf("Enter Base: ");
scanf("%d",&BASE);
printf("Enter Height: ");
scanf("%d",&height);
AREA = (BASE * HEIGHT)/2;
printf("The area of a triangle is %d",AREA);
}
getch();
return 0;
}
Write a program that gives discount of 100 pesos to a costumer if shirt bought is XL and the price is greater than 500; a discount of 50 pesos if the shirt bought is large and the price is greater than 400.
(Solution)
#include<stdio.h>
#include<conio.h>
#define s scanf
#define p printf
Write a program that will input a student's grade and will display "Congratulations you PASSED!" if the student's grade is greater than or equal 60. Otherwise "Sorry you FAILED!".
#include<stdio.h>
#include<conio.h>
#define p printf
#define s scanf
int GRADE;
int main( )
{
p("Enter Grade of Student:");
s("%d",&GRADE);
if(GRADE >= 60)
p("Congratulations you PASSED!");
else
p("Sorry you FAILED!");
getch();
return 0;
}
Write a program that asks the user to enter a number n and display the first even numbers. Example: if n=5, the first 5 even numbers are 2, 4, 6, 8 and 10.
(Solution)
#include<stdio.h>
#include<conio.h>
int main( )
{
int ONE, TWO;
printf("Enter Number: ");
scanf("%d",&TWO);
for (ONE=0; ONE<=TWO; ONE+=2)
{
printf ("%d\n",ONE);
}
Write a program that asks the user to enter a number n and display the first odd numbers. Example: if n=5, the first 5 even numbers are 1, 3, 5, 7 and 9.