Friday, March 30, 2018

How To Print Mark OF Subject In C++.

#include<conio.h>
#include<stdio.h>
#include<iostream.h>
int main()
{
clrscr();
cout<<" mark of mathematics is :90\n";
cout<<" mark of computer is:77\n";
cout<<" mark of chemistry is :60\n";
getch();
return 0;
}

No comments:

Post a Comment

Generate Even Numbers in a Range In PHP.

$start = 1; $end = 20; for ($i = $start; $i <= $end; $i++) {     if ($i % 2 == 0) {         echo $i . " is even.<br>";   ...