Q&A Discussions
where's the error ?
-3 Votes
2 Answersclass and object
1 Vote
1 AnswerWhy is not working
0 Votes
3 Answerscan someone please explain why this code keeps telling me complication error instead of outputting the value of speed.
#include <iostream>
using namespace std;
class myClass {
public:
void setcarspeed (int a){
speed=a;
}
int getcarspeed(){
return speed;
}
private:
int speed;
};
int main() {
myClass obj;
obj.setcarspeed (40);
cout<<obj.getcarspeed ;
return 0;
}
2 Votes
3 AnswersWhye error???
0 Votes
1 Answerusing System;
namespace GoodProgrammerTest
{
class Program
{
static void Main(string[] args)
{
Console.Write("Enter Yes or No");
Console.Write(
"Do you programme every day? : ") ;
int answer = Console.ReadLine();
if (answer =="Yes")
{
Console.WriteLine(
"You will be a good programmer");
}
else
{
Console.WriteLine(
"You will not be a good programmer");
}
}
}
}
2 Votes
3 AnswersI am confused on this
0 Votes
1 Answerjava learning
0 Votes
1 AnswerWhy not working
-4 Votes
4 AnswersHot today
SQL Intermediate Union module
0 Votes
Whatβs wrong with the new GUI?
0 Votes
My code is not working
1 Votes
Python
0 Votes