lab 3_75

Run Settings
LanguageC++
Language Version
Run Command
#include <iostream> #include <stdlib.h> using namespace std; // Variant 75 Lab 4 int main() { char strng[4];// to store the user's numbers //char strng; cout << "Input a 3 digital number :"<<endl; cin.getline(strng,4); //checking for identical numbers if(strng[0]==strng[1] && strng[0]==strng[2] && strng[1]==strng[2]) { cout<<"The intered numbers are all identical!!"<<endl; } else if(strng[0]==strng[1] || strng[0]==strng[2] || strng[1]==strng[2]) { cout<<"identical numbers found!!!"<<endl; }else cout<<"The intered numbers are all different!!"<<endl; return 0; }
Editor Settings
Theme
Key bindings
Full width
Lines