I made this topic for all my questions so that I don't flood the forum.I will also post my solved things as source code.
here is my new question
I want to make a ball move anywhere on the map but I can only make it move forward can anyone write a step back,left and right so that i can make it move everywhere here is the code:
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
|
#include <cstdlib>
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
int a
//all up movement begining
;cout<<"\nI\nI\nI\nI\nI\nI\nI\nI\nI\nI o\n"
;cin>>a
;if(a==1){
cout<<"\nI\nI\nI\nI\nI\nI\nI\nI\nIo\nI \n"
;cin>>a
;if(a==1){
cout<<"\nI\nI\nI\nI\nI\nI\nI\nIo\nI\nI \n"
;cin>>a
;if(a==1){
cout<<"\nI\nI\nI\nI\nI\nI\nIo\nI\nI\nI \n"
;cin>>a
;if(a==1){
cout<<"\nI\nI\nI\nI\nI\nIo\nI\nI\nI\nI \n"
;cin>>a
;if(a==1){
cout<<"\nI\nI\nI\nI\nIo\nI\nI\nI\nI\nI \n"
;cin>>a
;if(a==1){
cout<<"\nI\nI\nI\nIo\nI\nI\nI\nI\nI\nI \n"
;cin>>a
;if(a==1){
cout<<"\nI\nI\nIo\nI\nI\nI\nI\nI\nI\nI \n"
;cin>>a
;if(a==1){
cout<<"\nI\nIo\nI\nI\nI\nI\nI\nI\nI\nI \n"
;cin>>a
;if(a==1){
cout<<"\nIo\nI\nI\nI\nI\nI\nI\nI\nI\nI \n"
;}
;}
;}
;}
;}
;}
;}
;}
;}
//all up movement end
system("PAUSE");
return EXIT_SUCCESS;
}
|
###########################SOLVED########################################
A little rpg battle
#include <cstdlib>
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
int a,enemypower,b,c
;c=100
;enemypower=5
;b=100
;while(b>0){
;cout<<"enemy health "<<b<<"\n"
;cout<<"your health "<<b<<"\n"
;cout<<"your stamina:"<<b<<"\n"
;cout<<"pick a move:hit;strike or fire punch\n"
;cin>>a
;if(a==3){
b=b-20
;c=c-enemypower*3
;cout<<"enemy health "<<b
;cout<<"your health"<<c
;}
;if(a==2){
b=b-15
;c=c-enemypower*2
;cout<<"enemy health "<<b
;cout<<"your health"<<c
;}
;if(a==1){
b=b-10
;cout<<"enemy health "<<b
; system("PAUSE");
}
}
}