Computer Science, asked by jaiswalraju787, 6 months ago


Rewrite the following statement using suitable 'if (statement:
int ans =res > 365 ? 500/10: 300/10;​

Answers

Answered by AnindaBasu
1

Answer:

int ans;

if(res>365)

ans=500/10;

else

ans=300/10;

Similar questions