C++ Online Compiler & Playground
HTML/CSS/JavaScript
HTML
CSS
Javascript
C++
C
PHP
Java
Python
Swift
C#
Ruby
Node.JS
Kotlin
jQuery
Go
R
TypeScript
Start C++ Course
Register
Ans of quest no. 3
0
Author: Rayeed_leo
Dark
Public
Save
CPP
cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
#include
<
iostream
>
using
namespace
std
;
int
main
()
{
int
base
=
6
;
int
height
=
10
;
int
area
=
0.5
*
6
*
10
;
cout
<<
"Area of Triangle "
<<
area
<<
endl
;
return
0
;
}
Enter to Rename, Shift+Enter to Preview
OUTPUT