io
play

IO Dr. Mattox Beckman University of Illinois at Urbana-Champaign - PowerPoint PPT Presentation

Introduction Input Scenarios Using printf and scanf Interactive Tests IO Dr. Mattox Beckman University of Illinois at Urbana-Champaign Department of Computer Science Introduction Input Scenarios Using printf and scanf Interactive Tests


  1. Introduction Input Scenarios Using printf and scanf Interactive Tests IO Dr. Mattox Beckman University of Illinois at Urbana-Champaign Department of Computer Science

  2. Introduction Input Scenarios Using printf and scanf Interactive Tests Input and Output Your Objectives: ◮ Write input routines for three kinds of test inputs, ◮ use ‘scanf‘ and ‘printf‘ properly for various types of variables, and ◮ write code for interactive tests.

  3. scanf("%d", & cases); int cases,x,y; } printf("%d\n",x + y); scanf("%d %d", & x, & y); cases -- ; while (cases > 0) { Introduction Input Scenarios Using printf and scanf Interactive Tests Explicit Test Count ◮ First line of input is the number of tests you will receive. 0 #include <stdio.h> 1 2 int main () { 3 4 5 6 7 8 9 10 }

  4. while (1) { int x,y; } printf("%d\n",x + y); break ; if (x ==- 1 && y ==- 1) scanf("%d %d", & x, & y); Introduction Input Scenarios Using printf and scanf Interactive Tests Termination Marker ◮ The input itself will use a special value. 0 #include <stdio.h> 1 2 int main () { 3 4 5 6 7 8 9 10 }

  5. break ; int x,y; while (scanf("%d %d", & x, & y) && x != - 1 && y != - 1) { } if (x ==- 1 && y ==- 1) printf("%d\n",x + y); Introduction Input Scenarios Using printf and scanf Interactive Tests Termination Marker, pt 2 0 #include <stdio.h> 1 2 int main () { 3 4 5 6 7 8 9 }

  6. int x,y; break ; while (scanf("%d %d", & x, & y) != EOF) { } if (x ==- 1 && y ==- 1) printf("%d\n",x + y); Introduction Input Scenarios Using printf and scanf Interactive Tests End of File ◮ Use EOF explicitly. 0 #include <stdio.h> 1 2 int main () { 3 4 5 6 7 8 9 }

  7. %s %d %c %lld Introduction Input Scenarios Using printf and scanf Interactive Tests Why scanf and printf ? ◮ There are problems that TLE if you use cin and cout . ◮ scanf has some regular-expression like features that can be useful. Code Meaning Scan an integer Scan a long long integer Scan a string Scan a character

  8. ( 10, 20 )", but not "(10 ,20)" will read "(10,20)" will read "110101 eieio" will read "(10,20)", " Introduction Input Scenarios Using printf and scanf Interactive Tests Spaces and such ◮ Literal Characters 0 // 1 scanf("(%d,%d)"); ◮ Spaces 0 // 1 scanf(" ( %d, %d )"); ◮ A binary followed by vowels 0 // 1 scanf("%[01] %[aeiou]");

  9. break ; printf("%d\n",x + y); fflush(stdout); if (x ==- 1 && y ==- 1) } while (scanf("%d %d", & x, & y) != EOF) { int x,y; Introduction Input Scenarios Using printf and scanf Interactive Tests Interactive Tests ◮ Not common yet, but ICPC is starting to use them. ◮ One rule: call flush(stdout) every time you print. 0 #include <stdio.h> 1 2 int main () { 3 4 5 6 7 8 9 10 }

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend