a program in java to print a-1 b-2 c-3 d-4 and so on till z-26 using Scanner class only
Answers
Answered by
0
Answer:
1
#include <bits/stdc++.h>
using namespace std;
4 class Test
5
6
public:
7
Test() { cout << "Constructor called" :)
8
9
10 int main()
11
12
Test *t = (Test *) malloc(sizeof (Test));
13
return 0;
1
#include <bits/stdc++.h>
using namespace std;
4 class Test
5
6
public:
7
Test() { cout << "Constructor called" :)
8
9
10 int main()
11
12
Test *t = (Test *) malloc(sizeof (Test));
13
return 0;
)
15
15
Answered by
4
Answer:
Explanation:
a-1
b-2
c-3
d-4
e-5
f-6
g-7
h-8
i-9
j-10
k-11
l-12
m-13
n-14
o-15
p-16
q-17
r-18
s-19
t-20
u-21
v-22
w-23
x-24
y-25
z-26
Similar questions