Untitled
unknown
plain_text
4 years ago
621 B
7
Indexable
#include<iostream>
using namespace std;
int main() {
//int x = 10, y = 20;
//printf("%d %d", x, y);
//cout << x << " " << y;
//int x, y;
//scanf("%d %d",&x, &y);
//cin >> x >> y;
//cout << x << ' ' << y;
//cout << "Outsbook" << endl; //endl => end line
//cout << "Hello" << endl << "I" << endl << "Am" << endl << "Sabuj" << endl;
//cout << "Hello\nI\nAm\nSabuj\n";
//data types
//int, float, double, char, string(AKA character array)
//char c = 'A'; //char data type cannot contain more then 1 character
//string s = "I AM DIPA";
//cout << s << endl;
//int x;
//cin >> x;
//cout << x * 365 << endl;
}
Editor is loading...