#include <stdio.h>
int main() {
float s;
char g;
printf("Enter salary and grade:");
scanf("%f %c", &s, &g);
if(g=='A')
{
s=s*2;
}
printf("Net Salary=%.2f",s);
}
Right. So um I just realized one thing that um I have been trying to implement in my life also that uh whenever I'm discussing something...
No comments:
Post a Comment