Skip to content

Commit

Permalink
Create 467_Practice_makes_us_perfect.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
rajvikash18113 committed Nov 18, 2024
1 parent 1a501b7 commit 5bcc1df
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions Array/467_Practice_makes_us_perfect.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// https://www.codechef.com/problems/PRACTICEPERF?tab=statement

#include <iostream>

using namespace std;

int main()
{
int arr[4];
int count = 0;
for (int i = 0; i < 4; i++)
{
cin >> arr[i];
}
for (int i = 0; i < 4; i++)
{
if (arr[i] >= 10)
{
count++;
}
}
cout << count << endl;
return 0;
}

0 comments on commit 5bcc1df

Please sign in to comment.