Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

#include<iostream>

using namespace std;

int main()

int marks;

cout<< "enter the marks.";

cin>>marks;

if (marks>70 && marks<=80)

cout<<"pass";

else if ( marks>60 && marks<=70)

cout<<"fail";

return 0;

You might also like