Advertisement
George_Ivanov05

Untitled

Jan 11th, 2023
663
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.35 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.     int a;
  6.     cout<<"Wuwedi promenliwa: ";
  7.     cin>>a;
  8.     int edinici = a % 10;
  9.     int desetici = (a % 100) / 10;
  10.     int stotici = (a / 100) % 10;
  11.     cout<<"Stotici = "<<stotici<<"\n";
  12.     cout<<"Desetici = "<<desetici<<"\n";
  13.     cout<<"Edinici = "<<edinici<<"\n";
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement