Untitled
unknown
plain_text
5 months ago
1.2 kB
2
Indexable
#include <iostream> using namespace std; int main() { //Deklarimi i identifikuesve int identifier = 10; int seven_11 = 20; int _unique_ = 30; int gross-income = 40000; int a_bc_d = 50; int variable = 60; //Deklarimi i identifikuesve te korigjuar int catchVAR = 70; int gross_income_corr = 80000; // nga gross gross income int isTrue = 1; // Nga true int twoByTwo = 4; // Nga 2by2 int defaultVar = 0; // Nga default int object_oriented = 100; int publicVar = 1; // Nga public //Primtimi i vlerave cout << "identifier: " << identifier << endl; cout << "seven_11: " << seven_11 << endl; cout << "_unique_: " << _unique_ << endl; cout << "gross_income: " << gross_income << endl; cout << "a_bc_d: " << a_bc_d << endl; cout << "variable: " << variable << endl; cout << "catchVar: " << catchVar << endl; cout << "gross_income_corr: " << gross_income_corr << endl; cout << "isTrue: " << isTrue << endl; cout << "twoByTwo: " << twoByTwo << endl; cout << "defaultVar: " << defaultVar << endl; cout << "object_oriented: " << object_oriented << endl; cout << "publicVar: " << publicVar << endl; return 0; }
Editor is loading...
Leave a Comment