/* hra=25% of salary
* ca=15% of salary
* ea=10% of salary
* total salary= hra + ca + ea
*/
import java.io.*;
class pay
{
protected static void main()throws IOException
{
BufferedReader in=new BufferedReader(new InputStreamReader(System.in));
System.out.print("Enter the salary: ");
int sal=Integer.parseInt(in.readLine());
float tsal=sal;
if(sal>5000)
{
float hra,ca,ea;
hra=sal/4;
ca=(sal*3)/20;
ea=sal/10;
tsal=sal+hra+ca+ea;
}
System.out.print("Total Salary= "+tsal);
}
}
echo 'print a pattern'
Q.1 Write a program to print first ten odd natural numbers. Q.2 Write a program to input a number. Print their table. Q.3 Write a function to print a factorial value.
write a program to print the series 1/12+1/22+.........+1/n2 ?
mesh's basic salary is input through the keyboard. his dearness allowance is 40% of basic salarying , and house rent allowance is 20% of basic salaried. write a program to calculate his gross salary
This is a directive, not a question.
write a program to print A to Z on screen in c?
echo 'print a pattern'
Q.1 Write a program to print first ten odd natural numbers. Q.2 Write a program to input a number. Print their table. Q.3 Write a function to print a factorial value.
write a program to print the series 1/12+1/22+.........+1/n2 ?
mesh's basic salary is input through the keyboard. his dearness allowance is 40% of basic salarying , and house rent allowance is 20% of basic salaried. write a program to calculate his gross salary
This is a directive, not a question.
good morning
Yes.
You can use int i; for (i = 10; i <= 50; i += 2) {//print i} as a program to print even numbers between 10 and 50.
include <stdio.h> int main (void) { puts ("print"); return 0; }
#include
Write a c program to print the 100 to 1 nos