Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Chef appeared for an exam consisting of 3 sections. Each section is worth 100 marks.
Chef scored A marks in Section 1, B marks in section 2, and C marks in section 3.
Chef passes the exam if both of the following conditions satisfy:
Determine whether Chef passes the exam or not.
For each test case, output PASS
if Chef passes the exam, FAIL
otherwise.
Note that the output is case-insensitive i.e. PASS
, Pass
, pAsS
, and pass
are all considered same.
Input: 5
9 100 100
30 40 50
30 20 40
0 98 8
90 80 80
Output: FAIL
PASS
FAIL
FAIL
PASS
Test Case 1: Although Chef’s total score is 209≥100, still Chef fails the exam since his score in section 1 is <10.
Test Case 2: Chef cleared each section’s cutoff as well his total score =120≥100.
Test Case 3: Although Chef cleared each section’s cutoff but his total score is 90<100. So he fails the exam.
Test Case 4: Although Chef’s total score is 106≥100, still Chef fails the exam since his score in section 1 is <10.
Test Case 5: Chef cleared each section’s cutoff as well his total score = =250≥100.
#include <iostream>
using namespace std;
int main() {
int t,a,b,c;
cin>>t;
while(t--){
cin>>a>>b>>c;
if(a>=10 && b>=10 &&c>=10){
if((a+b+c)>=100){
cout<<"PASS"<<endl;
}
else{
cout<<"FAIL"<<endl;
}
}
else{
cout<<"FAIL"<<endl;
}
}
return 0;
}
t = int(input())
for i in range(t):
a,b,c = list(map(int,input().split()))
if(a>=10 and b>=10 and c>=10 and a+b+c>=100):
print("pass")
else:
print("fail")
import java.util.Scanner;
public class Main{
public static void main (String[] args){
Scanner sc=new Scanner(System.in);
int T=sc.nextInt();
for(int i=0;i<T;i++){
int A=sc.nextInt();
int B=sc.nextInt();
int C=sc.nextInt();
int total=A+B+C;
if(total>=100 && A>=10 && B>=10 && C>=10){
System.out.println("PASS");
}
else{
System.out.println("FAIL");
}
}
}
}
In our experience, we suggest you solve this Pass the Exam CodeChef Solution and gain some new skills from Professionals completely free and we assure you will be worth it.
If you are stuck anywhere between any coding problem, just visit Queslers to get the Pass the Exam CodeChef Solution
I hope this Pass the Exam CodeChef Solution would be useful for you to learn something new from this problem. If it helped you then don’t forget to bookmark our site for more Coding Solutions.
This Problem is intended for audiences of all experiences who are interested in learning about Data Science in a business context; there are no prerequisites.
Keep Learning!
More Coding Solutions >>