Problem1544--C Programming Practicals 3 logical if else-4

1544: C Programming Practicals 3 logical if else-4

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 799  Solved: 205
[Submit] [Status] [Web Board] [Creator:]

Description

Ask user to enter values a and b, then calculate and display a^b and y values. y=〖tan〗^(-1) (a^b)

Input

Enter two numbers a and b 12 1

Output

Value 12^1 = 12 Value atan(12^1) = 1.48766

Sample Input Copy

12
1

Sample Output Copy

Value 12^1  = 12
Value atan(12^1)  = 1.48766

Source/Category

113