Discussões Q&A
if 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 Voto
 4 RespostasHey there,
I don't know why, but when I import tkinter on IDLE like this:
from tkinter import *
And I say:
window = Tk()
Even known I use python 3.2.5, which should be able to use Tkinter, the python shell raises a ValueError that says that Tk() is not defined. I am very sure I use python 3.2.5 and tutorials from the Python Foundation say that is what I have to do. But it still doesn't work.
Does anyone have an idea of how to solve this problem? Thank you!
 0 Voto
 3 RespostasPopular hoje
How create a new language ?
 1 Votes
Beginner question
 0 Votes
I need help to solve this
 0 Votes
Project
 0 Votes