-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (78 loc) · 3.16 KB
/
index.html
File metadata and controls
79 lines (78 loc) · 3.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Problem statements</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
</head>
<body>
<div class="container">
<h1 class="text-center alert alert-danger m-5">Problem Statements</h1>
<hr />
<div class="list-group">
<a href="#" class="list-group-item list-group-item-action" aria-current="true">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">1. Write a program that accepts an integer (n) and computes the value of n+nn+nnn.</h5>
<small> easy</small>
</div>
<p class="mb-1">input : 5</p>
<small class="text-muted">output : 615</small>
</a>
<a href="#" class="list-group-item list-group-item-action">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">2. Write a program to find whether a given number (accept from the user) is even or odd, print out an appropriate message to the user.</h5>
<small class="text-muted"> easy</small>
</div>
<p class="mb-1">input : 5</p>
<small class="text-muted">output : 5 is odd number</small>
</a>
<a href="#" class="list-group-item list-group-item-action">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">3. Write a program that can take input from user and covert steps to kilometres and vice verse with appropriate message.</h5>
<small class="text-muted"> easy</small>
</div>
<p class="mb-1">input : 4359</p>
<small class="text-muted">output : Nearly between 3048 and 3135 Meters</small>
</a>
</div>
</div>
<br />
<div class="container">
<h2 class="text-center alert alert-info m-2">Solution</h2>
<ol class="list-group list-group-numbered">
<li class="list-group-item d-flex justify-content-between align-items-start">
<div class="ms-2 me-auto">
<div class="fw-bold">Solved</div>
C Language, C++, Python
</div>
<!--
<span class="badge bg-primary rounded-pill">14</span>
-->
</li>
<li class="list-group-item d-flex justify-content-between align-items-start">
<div class="ms-2 me-auto">
<div class="fw-bold">Solved</div>
C Language, C++, Python
</div>
<!--
<span class="badge bg-primary rounded-pill">14</span>
-->
</li>
<li class="list-group-item d-flex justify-content-between align-items-start">
<div class="ms-2 me-auto">
<div class="fw-bold">Solved</div>
C Language, C++, Python
</div>
<!--
<span class="badge bg-primary rounded-pill">14</span>
-->
</li>
</ol>
<br>
<a href="https://github.com/vebhvv/Problem-statements" class="btn btn-primary btn-lg">See Code Repository</a>
<hr />
</div>
</body>
</html>