cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
very simple question
very simple question
Dec 12, 2010 at 7:03pm UTC
hunkeelin
(159)
translate this English to c++
-> a is a integer from 1 to 9
Dec 12, 2010 at 7:11pm UTC
firix
(438)
this is a trojan
Dec 12, 2010 at 8:51pm UTC
h9uest
(157)
To firix:
What are you talking about?
Dec 12, 2010 at 9:04pm UTC
Athar
(4466)
for
(
int
a=1;a<=9;a++);
?
Dec 12, 2010 at 11:10pm UTC
hunkeelin
(159)
Like,
If a is between 1 to 9 then this is good
else this is not good. sth like that
Dec 12, 2010 at 11:33pm UTC
Zaita
(2770)
1
2
3
4
5
if
(a >= 1 && a <= 9) {
// good
}
else
{
// bad
}
Dec 13, 2010 at 10:21am UTC
firix
(438)
@h9uest
what you are saying?
Topic archived. No new replies allowed.