0
How to assign a variable im getting confused
help getting confused
7 ответов
+ 1
The first step is to declare the variable:
int x;
Then you assign a value:
x=15;
This can be done with one expression:
int x=15;
0
still dont have idea
0
you need a variable, a variable must start by a letter example a ab a1...
you need to choose type:
integer without , example 1
float with virgule , example 1,5
you can declare it by 2 method:
1)
int a=20;
2)
int a;
a=20;
check my code up
0
where
0
click on the link then run it