Guest User

Untitled

a guest
Nov 15th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. //
  2. // main.cpp
  3. // Created by NomuraHiroki on 2016/11/06.
  4. //
  5. #include "main.h"
  6.  
  7. int main (void) {
  8.  
  9. double d;
  10. int i;
  11.  
  12. og_scanf("%d, %lf", &i, &d);
  13. og_printf("You int is %d", i);
  14. og_printf("You double is %lf ", d);
  15.  
  16. return 0;
  17. }
Add Comment
Please, Sign In to add comment