We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- C++
- Introduction
- Conditional Statements
- Discussions
Conditional Statements
Conditional Statements
Sort by
recency
|
828 Discussions
|
Please Login in order to post a comment
An easier method, with a switch statement, almost all can understand.
(NOTE, THIS IS NOT THE FULL CODE, JUST THE IF STATEMENT WHERE YOU HAVE TO PUT AFTER THE
// Write your code here
COMMENT)Why this code isn't running here but in codeblocks
include
int main() {
int n; printf("Enter a value: "); scanf("%d",&n);
if(1 <= n && n <= 9) switch (n) { case 1:printf("one\n");break; case 2:printf("two\n");break; case 3:printf("three\n");break; case 4:printf("four\n");break; case 5:printf("five\n");break; case 6:printf("six\n");break; case 7:printf("seven\n");break; case 8:printf("eight\n");break; case 9:printf("nine\n");break;
}
This code can't run in hackerrank but it run in codeblock and online compiler with same output.plz someone solve this if i am wrong.
using namespace std;
int main() { int n; cout << "Enter any n: "; cin >> n;
}