Dyskusje Q&A
what's wrong in this condition
prompt ("")
if (prompt ("1")) {
    document.write("<h1>HTML Tutorial</h1>");
} else if (prompt ("2")) {
    document.write("<h1>CSS Tutorial</h1>");
} else {
    document.write("<h1>JavaScript Tutorial</h1>");
}
I want when type 1 in output HTML tutorial shows, type 2 css tutorial shows else javascript tutorial
 0 głosów
 13 odpowiedziif i text 21 it stacks. program says you are a child. you are a teenager. you are adult. how can i delete this "stack".
#include <iostream>
using namespace std;
int main() {
int age;
cin>>age;
  if (age>=14){
  cout<<"You're a Teenager"<<endl;
  }
  if (age>=18){
  cout<<"You're adult"<<endl;
  }
  if (age>=0){
  cout<<"You're a Child"<<endl;
  }
     else{
     cout<<"Are u stupid ?"<<endl;
     }
    return 0;
}
 0 głosów
 4 odpowiedzi#include <iostream>
using namespace std; 
class employee
int main()
{
   private:
    double salary;
    public:
    void getsalary(double sal)
    {
       salary=sal; 
    }
    void display()
    {
       cout<<"the salary:"<<salary;
    }
    
    
};
void main ()
{
   employee programmer;
   employee manager;
   manager.getsalary (60000.0);
   programmer.getsalary(40000.0);
   manager.display();
   programmer.display();
   return 0;
   
}
 1 Głos
 5 odpowiedzi#include <iostream>
using namespace std;
int calc(int &a,int &b,int c=6) 
{
  a+=b;
  b-=c;
  c=a+b;
   }
    int main()
    {
      int calc(int,int,int);
      int x=2,y=3,z=4;    cout<<x<<endl<<y<<endl<<z<<endl;
      calc(x,y,z); cout<<x<<endl<<y<<endl<<z<<endl;
      calc(5,6,z); cout<<x<<endl<<y<<endl<<z<<endl;
    return 0;
}
 1 Głos
 5 odpowiedziPopularne dzisiaj
Beginner question
 0 Votes
I need help to solve this
 0 Votes
Remove
 0 Votes
Project
 0 Votes
Engineer Cloud
 0 Votes
Lua?
 1 Votes