Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3.  
  4. int main(void){
  5. int a , b;
  6.  
  7. cout<<"Informa um valor numerico de 2 unidades"<<endl;
  8. cin>>a;
  9.  
  10. b = a % 10 ;
  11.  
  12. cout<<b;
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement