why some test cases are failing? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
9 Answers
+ 3
Now, you need to change your first if statement to a loop to run it x times.
28th Feb 2022, 12:12 PM
Simba
Simba - avatar
+ 2
#include <iostream> using namespace std; int main() { int count = 300; // letter in a minute int time; cin >> time; //your code goes here time *= 300; cout << count << endl; return 0; } Please fix it for me
28th Feb 2022, 6:24 PM
Jamilu Abubakar Sadiq
Jamilu Abubakar Sadiq - avatar
+ 1
Jay Matthews can you please tell where I’m doing mistake in my approach
28th Feb 2022, 11:15 AM
Utsav Singh
Utsav Singh - avatar
+ 1
Simba no this one is different. Is that question opening now? Please check
28th Feb 2022, 11:17 AM
Utsav Singh
Utsav Singh - avatar
+ 1
Try this I'm re writing your code https://code.sololearn.com/cc6aP4scgS0d/?ref=app
28th Feb 2022, 4:53 PM
NonStop CODING
NonStop CODING - avatar
+ 1
Jay Matthews Simba Non Stop Coding I have updated my approach its working now. I was taking the test case input also which was not necessary
1st Mar 2022, 2:25 AM
Utsav Singh
Utsav Singh - avatar
+ 1
Jamilu Abubakar Sadiq Are you trying to print how many letters you can write within a given time ? Instead of printing variable " count " You should be printing " time " Because you are multiplying input time by 300. // Letters per minute So, cout << time << endl;
1st Mar 2022, 3:10 AM
NonStop CODING
NonStop CODING - avatar
+ 1
US22 What is your approach ? Please share🤗🤗 I want to know because I like watching different ways of solving a single problem👍
1st Mar 2022, 3:13 AM
NonStop CODING
NonStop CODING - avatar